SPSAI PRANEETH BHATTUinsaipraneethbhattu.hashnode.dev·3d ago · 15 min readStop Writing Repetitive Playbooks: Ansible Tags, Variables, Loops, Handlers and Conditions DecodedThe Setup Module: Reading Your Servers Before you configure remote machines, it often helps to know what you are working with. The setup module is Ansible's built-in tool for collecting detailed syste10
SPSAI PRANEETH BHATTUinsaipraneethbhattu.hashnode.dev·5d ago · 13 min readAnsible Playbooks Explained: From First YAML File to Managing Real ServersWhat Is a Playbook? A playbook is a YAML file where you define what Ansible should do on your remote servers. It is a structured list of tasks, and each task calls an Ansible module to do something sp10
SPSAI PRANEETH BHATTUinsaipraneethbhattu.hashnode.dev·6d ago · 12 min readYou Have 400 Servers to Configure. Now What? Let Ansible Do the Work.What Exactly Is Ansible? Ansible is a configuration management tool. It is also commonly referred to as an IT automation tool. Both descriptions are accurate, and both point to the same core idea: Ans10
SPSAI PRANEETH BHATTUinsaipraneethbhattu.hashnode.dev·6d ago · 14 min readBuilding Production-Ready Docker Deployments with Secrets, Stacks, and Distroless ImagesDocker Secrets: Passing Sensitive Data to Containers Think about what a secret is in the context of a running application. It is any piece of information that should not be visible to unauthorized use00
SPSAI PRANEETH BHATTUinsaipraneethbhattu.hashnode.dev·6d ago · 18 min readBeyond One Server: Solving Docker Scaling with Swarm and Container NetworksPushing All Four Images to Docker Hub We have four images built locally: internet-banking:v1, mobile-banking:v1, insurance:v1, and loans:v1. These images live only on the EC2 host machine right now. T10