đź‘‹ Welcome to codecowboy.io, a site that’s devoted to technology and things that interest me. I write a lot about automation, kubernetes, cloud and developer related topics… and anything else that interest me.
- You can read more about me here
đź‘‹ Welcome to codecowboy.io, a site that’s devoted to technology and things that interest me. I write a lot about automation, kubernetes, cloud and developer related topics… and anything else that interest me.
Intro There has been a lot of hype on socials recently about MCP or Model Context Protocol. Essentially it’s a protocol that allows LLM AI to be extended. Most of the extensions relate to providing context using your own data. This is what I am going to walk through here. I will walk through: Creating an MCP What works and what works better My discoveries so far TLDR If you just want the code - it’s here:...
Intro There are multiple container technologies available in AWS, this post focuses on ECS, the Elastic Container Service. This service is interesting because it’s not kubernetes based. This means that the service is typically simpler to get up and running, and is easier to work with. It also fits development workflows a lot better than many kubernetes distributions out there. This post is about how to set up ECS using AWS’ own CDK toolkit....
Intro I’ve been fooling around with pulumi for a bit now, and thought I would write about it here. I have had an API gateway that is backed by a lambda function in terraform for quite some time. I use it quite frequently to spin up infrastructure when I need to perform testing on integrations. I eventually decided to re-write this in pulumi. TLDR If you just want the code - it’s here:...
Intro As many of you know, I’ve been using Pulumi for a while and I am a big fan. Today, I’m going to walk through creating an application using the digital ocean app platform. Why digital ocean? A lot of people will wonder “why digital ocean”?? the answer is simple. It’s extremely well integrated, and this makes it very compelling to use. The digital ocean app platform Today I’m using the digital ocean app platform....
Intro As many of you know, I’ve been using Pulumi for a while and I am a big fan. Today, I’m going to walk through creating Kubernetes in digital ocean. Why digital ocean? A lot of people will wonder “why digital ocean”?? the answer is simple. It’s extremely well integrated, and this makes it very compelling to use. I’m going to walk through creating a simple kubernetes cluster (with three nodes), and then deploying a simple application and load balancer to the cluster....
Intro As many of you know, I’ve been using Pulumi for a while and I am a big fan. Today, I’m going to walk through creating resources in digital ocean. Why digital ocean? A lot of people will wonder “why digital ocean”?? the answer is simple. It’s cheap, fast, and has most of the services I need. As always, as this is my first digital ocean post, I will start with a simple virtual machine, or a droplet in digital ocean terminology....
Intro I last wrote about an API gateway and lambda function in AWS. I wanted to expand on that and walk through the lambda function in more detail. TLDR - The github repo Th lambda function can be anything, but in my case it takes a JSON input and passes certain fields to another API endpoint. This is most useful for being able to perform transformations on data. You can clone the repo with all of the working code here:...
Intro I do a lot of building various platforms for various reasons. I do this as part of my day job, I also do it as part of some open source projects that I work on. I work through building various stacks and infrastructure for things. Today I am going to share my scaffold for AWS API gateways and lambda functions using terraform. This has served me well, and can be adapted to different styles of deployment....
Intro I do a lot of building various platforms for various reasons. I do this as part of my day job, I also do it as part of some open source projects that I work on. I work through building various stacks and infrastructure for things. Today I am going to share my scaffold for AWS using terraform. This has served me well, and can be adapted to different styles of deployment....
Intro I’ve been fooling around with pulumi for a bit now, and thought I would write about it here. This is the third in a series of posts where I create the exact same infrastructure using pulumi in YAML, Python and Javascript. What is it? Pulumi is an infrastructure as code framework with a twist. You can use any language you like in order to write your code (within reason)....