Day 15 Task: Python Libraries for DevOpsReading JSON and YAML in Python As a DevOps Engineer you should be able to parse files, be it txt, json, yaml, etc. You should know what all libraries one should use in Python for DevOps. Python has numerous libraries like os, sys, json, yaml etc ...Feb 2, 2025·3 min read
Day11 of #90daysofdevops | Git stashing & resolving conflicts (Advancing with Git)Git Stashing and resolving conflictsAug 4, 2023·3 min read
Day10 of #90daysofdevops | Advance Git & GitHub for DevOps EngineersGit Branching Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch and can have multiple other branches. You can merge a branch into another branch using a pull request. B...Aug 2, 2023·2 min read
Day 9 Task: Deep Dive in Git & GitHub for DevOps Engineers.What is Git and why is it important? Git is a distributed version control system (VCS) designed to handle everything from small to very large projects with speed and efficiency. It was created by Linus Torvalds in 2005 to manage the development of th...Aug 1, 2023·10 min read
Day 8 Task: Basic Git & GitHub for DevOps Engineers.What is Git? Git is a version control system that allows you to track changes to files and coordinate work on those files among multiple people. It is commonly used for software development, but it can be used to track changes to any set of files. Wi...Jul 31, 2023·9 min read
Day 7 Task: Understanding package manager and systemctlWhat is a package manager in Linux? In simpler words, a package manager is a tool that allows users to install, remove, upgrade, configure and manage software packages on an operating system. The package manager can be a graphical application like a ...Jul 30, 2023·6 min read
Day 6 Task: File Permissions and Access Control ListsToday is more on Reading, Learning and Implementing File permissions The concept of Linux File permission and ownership is important in Linux. Here, we will be working on Linux permissions and ownership and will do tasks on both of them. Let us start...Jul 29, 2023·6 min read