|
Hello Reader, What is the difference between traditional CICD and GitOps? This topic is coming up frequently in actual project meetings, and interviews. Let us understand this with the below diagram: Traditional DevOps GitOps Argo Workflows Recently, Argo Workflows have been growing in popularity, and the differences between Argo CD and Argo Workflows can be confusing. Think of Argo Workflows as AWS Step Functions running inside the cluster. As in, Argo Workflows can create a sequence of steps that can run in parallel or one after another (or as a DAG for those of you familiar with it). Each step runs inside a container. Each step can be bash script, code, or run your container. Let's take an example - you want to migrate the workloads from Cluster Autoscaler to Karpenter, and this requires a series of steps. An Argo Workflow can be used to do this. If you are just deploying into the cluster, Argo CD is recommended. Not only is it simpler, but the UI is also built for deployments. If you need to execute a series of steps (e.g., batch processing or other complex multi-step processes), go with Argo Workflows. Check out my talk from Paris Kubecon on Argo Workflows with demo: Video Link. So let me ask you this - are you camp traditional DevOps or camp GitOps, and why? If you have found this newsletter helpful, and want to support me 🙏: Checkout my bestselling courses on AWS, System Design, Kubernetes, DevOps, and more: Max discounted links AWS SA Bootcamp with Live Classes, Mock Interviews, Hands-On, Resume Improvement and more: https://www.sabootcamp.com/
Keep learning and keep rocking 🚀, Raj |
Free Cloud Interview Guide to crush your next interview. Plus, real-world answers for cloud interviews, and system design from a top AWS Solutions Architect.
Hello Reader, This is, without exaggeration, the most common interview question right now across cloud and AI roles. And it is also one of the easiest questions to fail badly, because most candidates do not realize they are failing it until they get the rejection email. An interviewer asks, "What is an AI agent?" Average answer Candidate responds with something like, "Agents perform complex tasks with a prompt." Or worse, they start dropping buzzwords. Context engineering. Loop engineering....
Hello Reader, Here is one of my favorite interview tricks. I used it myself, and I teach it to every one of my bootcamp students. In almost every SA phone screen, you'll get an icebreaker like "What is Lambda?" or "What is S3?" Sounds easy. But most candidates blow it. Here's the average answer I hear: "Lambda is serverless. It works with API Gateway. It can run up to 15 minutes." A list of random features with no structure, super basic, right? Here's the trick: Memorize one line of the...
Hello Reader, "How are you using GenAI in your day-to-day work?" This question shows up in almost every interview now, and almost everyone gives the same answer. "I use GenAI to write code." "I use it to generate documents." "I have a bot that automates part of my job." These are bad answers. Not because they are false, but because they tell the interviewer nothing about you specifically. The prompt is not the differentiator. Anyone can type a prompt into Claude or ChatGPT and get code back....