How to Deploy a Containerized Application to Amazon EKS Using a Jenkins PipelineOur previous articles discussed concepts such as building a containerized application, setting up an EKS cluster, and navigating Jenkins. This article will combine all this knowledge and implement a workflow similar to what you'll see in a real-world...May 20, 2024·8 min read
How to Deploy React and Node.js Containers to a Kubernetes ClusterWhen you have multiple containers, deploying them to a Kubernetes cluster doesn't deviate much from deploying a single container. The only difference is that you'll have to create a deployment for each container. In this case, you'll use a single dep...Mar 15, 2024·7 min read
How to Deploy a Flask Application to KubernetesFlask is a Python framework that allows developers to easily create web applications. It is a microweb framework meaning that it doesn't require any particular tools or libraries to work. However, it is highly extensible, allowing developers to inclu...Mar 7, 2024·8 min read
How to Deploy a Dockerized Application to Amazon EKS ClusterContainers are a way to package, deploy, and manage applications. Docker is a popular open-source containerization platform that allows you to package your application, its OS libraries, and dependencies together into a container image. This containe...Mar 2, 2024·9 min read
How to Setup a CI/CD Pipeline with JenkinsA Continuous Integration/Continuous Deployment or Delivery (CI/CD) pipeline is a step-by-step process that automates the deployment of software. A pipeline code contains a series of steps (stages) that are executed in a sequence with each step buildi...Feb 20, 2024·10 min read
How to Deploy a Containerized Application to a Kubernetes ClusterContainerizing an application means packaging it and all its dependencies into a single file. You can achieve this using a tool like Docker. The process of containerization involves creating a Dockerfile; which when built becomes a Docker image. Once...Feb 13, 2024·12 min read
How I completed the GCP edition of the Cloud Resume Challenge in AWS under one weekHow I completed the GCP edition of the Cloud Resume Challenge in AWS under one week I completed the Cloud Resume Challenge in a week. Yes, just one week. Was it fun? Absolutely not. Was it worth it? Without a doubt. At every step in this challenge, t...Nov 11, 2023·12 min read