JNJayesh Nalawadeinjayeshdevops.hashnode.dev·Dec 29, 2024 · 9 min readMastering Kubernetes Traffic: Ingress, Controllers, and Gateway API ExplainedIngress - Make your HTTP (or HTTPS) network service available using a protocol-aware configuration mechanism, that understands web concepts like URIs, hostnames, paths, and more. The Ingress concept lets you ==map traffic to different backends base...00
JNJayesh Nalawadeinjayeshdevops.hashnode.dev·Dec 29, 2024 · 5 min readMastering Kubernetes Services: A Guide to Seamless Pod Communication and Load BalancingIn Kubernetes, a Service is an abstraction that defines a logical set of Pods and a policy to access them. Services provide a stable endpoint to applications running on Pods, even if the underlying Pods are dynamically created or destroyed. Key Co...00
JNJayesh Nalawadeinjayeshdevops.hashnode.dev·Dec 20, 2024 · 5 min readMastering Ansible: Quick and Powerful Ad-Hoc Commands for Efficient AutomationAnsible Ad-hoc commands An Ansible ad hoc command uses the /usr/bin/ansible command-line tool to automate a single task on one or more managed nodes. ad hoc commands are quick and easy, but they are not reusable. you could execute a quick one-liner ...00
JNJayesh Nalawadeinjayeshdevops.hashnode.dev·Dec 10, 2024 · 3 min readDocker ENV vs ARG Explained: Key Differences to KnowWhen working with Docker, two essential instructions, ENV and ARG, are often used to handle variables in your Dockerfile. While they may seem similar, they serve different purposes. Let’s dive into their differences, use cases, and best practices! O...00
JNJayesh Nalawadeinjayeshdevops.hashnode.dev·Dec 4, 2024 · 2 min readCOPY vs. ADD in Dockerfile: What's the Difference?If you've worked with Dockerfiles, you've probably come across the COPY and ADD instructions. They seem to do the same thing i.e. copy files into your Docker image. So, why are there two? And when should you use one over the other? Let's break it dow...00