Day 15 Task: Python Libraries for DevOpsTasks 1: Create a Dictionary in Python and write it to a json File. Task 2: Read a json file services.json kept in this folder and print the service names of every cloud service provider. output aws : ec2 azure : VM gcp : compute engine H...Dec 26, 2023·1 min read
Day 10: Advance Git & GitHub for DevOps EngineersTask 1: Add a text file called version01.txt inside the Devops/Git/ with “This is the first feature of our application” written inside. This should be in a branch coming from master, [hint try git checkout -b dev], switch to dev branch ( Make sure y...Nov 15, 2023·2 min read
Day 9: Deep Dive in Git & GitHubWhat is Git and why is it important? Git is a distributed version control system that helps us to track the changes of a particular file. It helps the team to collaborate for a speedy development cycle. What is the difference Between the Main Branc...Nov 5, 2023·3 min read
Day 8: Basic Git & GitHub for DevOps EngineersWhat is Git? Git is a version control system used for tracking changes to files and collaborating with others. It is commonly used in software development but can be used for any set of files. Git is a version control system that tracks file changes,...Nov 4, 2023·2 min read
Day 7: Understanding package manager and systemctlWhat is a package manager in Linux? A package manager is a software tool that helps users install, remove, update, and configure software packages on a Linux system. Package managers can be command line tools (CLI) or graphical user interface (GUI) ...Oct 27, 2023·3 min read
Day 6: File Permissions and Access Control ListsHello Dosto Welcome back to my #90DayDevOps blog. Today we learn about File Permissions where we'll create one file and try to change their permission and Access Control lists. Let's get started. So our first task will be Create a simple file and do...Oct 26, 2023·4 min read
Day 5: Advanced Linux Shell ScriptingWrite a bash script create directories.sh that when the script is executed with three given arguments (one is the directory name and second is start number of directories and third is the end number of directories ) it creates a specified number of d...Oct 25, 2023·4 min read