When ANSIBLE_CONFIG was set1️⃣ When ANSIBLE_CONFIG was set First output showed: config file = /tmp/ansible.cfg That means the environment variable ANSIBLE_CONFIG was pointing to /tmp/ansible.cfg. Environment variable has higheMar 16, 2026·2 min read
Continuous Delivery (CD)Continuous Delivery (CD) Continuous Delivery (CD) is a DevOps practice in which application code changes are automatically built, tested, and prepared for release to production at any time. The deployment to production is a manual business decision, ...Dec 7, 2025·3 min read
Continuous Integration (CI)Continuous Integration (CI) Continuous Integration (CI) is a DevOps practice in which developers frequently integrate their code changes into a shared version control repository, where each integration is automatically built, tested, and validated us...Dec 7, 2025·3 min read
Dev-ops understanding✅ What is DevOps? (In Simple Words) DevOps = Development + Operations It is a way of working together between: 👨💻 Developers (who write code) 🧑💻 Operations (who deploy & manage servers) 👉 Goal: Faster software delivery + Better quality + A...Dec 7, 2025·7 min read
🔰 Linux Training - Day 6-Linux User Management & Security 🌟🌟 Yesterday's Wow Moments in Linux User Management & Security 🌟 Diving deeper into Linux fundamentals with user management and security was an incredible experience! Some Wow Moments: 👥 User Management Mastery: Gained control over user creation ...Nov 6, 2024·4 min read
VirtualizationWhat is Virtualization? Virtualization in cloud computing is the process of creating a virtual version of physical resources—like servers, storage, or network components—that allows for multiple virtual instances to run on a single physical system. T...Nov 5, 2024·9 min read
Find the difference between a Tuple and a List.Here’s a simple breakdown of the key differences between a tuple and a list in Python: FeatureTupleList Syntax() (e.g., my_tuple = (1, 2, 3))[] (e.g., my_list = [1, 2, 3]) MutabilityImmutable (cannot be changed after creation)Mutable (can be ...Nov 2, 2024·1 min read