AAAmitt Ashokinamittashok.hashnode.dev·Jan 31, 2025 · 3 min readKubernetes- Service & IngressUnderstanding Pod Communication and External Access to Services in Kubernetes In this article, we will explore how containers inside Pods communicate with each other and how external users can access services or applications running within a Kubernet...00
AAAmitt Ashokinamittashok.hashnode.dev·Jan 27, 2025 · 2 min readKubernetes- WorkloadDeployment This is a manifest file in YAML format that enhances the containers inside the pod, similar to how Tony Stark is empowered by the Iron Man suit. It includes features like replicas, rolling updates, autoscaling, and auto-healing. Replicas -...00
AAAmitt Ashokinamittashok.hashnode.dev·Jan 27, 2025 · 3 min readArchitecture of KubernetesThe architecture of Kubernetes is designed to make it easy to deploy, scale, and manage containerized applications. It consists of different components that work together to provide a flexible and robust platform. A cluster contains at least one mast...00
AAAmitt Ashokinamittashok.hashnode.dev·Oct 22, 2024 · 2 min readHow Python Enhances DevOps Efficiency and Automation# Create in function format import os import boto3 # Set clinet globally s3 = boto3.client('s3') def list_bucket(): response = s3.list_buckets() # Fetch the buckets form account bucket_list = (response["Buckets"]) # Iterate over...00
AAAmitt Ashokinamittashok.hashnode.dev·Aug 29, 2024 · 2 min readConfiguration ManagementAnsible Role After understanding inventory and playbooks, let's dive deeper into more concepts related to Ansible. In a previous article, we saw how to create a playbook for the simple installation and running of an HTTPD server. Imagine we have five...00