Docker Cheat sheetWe have completed the Docker and Docker-compose hands-on and we have learned something interesting from it. Now it's time to take our Docker skills to the next level by creating a comprehensive cheat sheet of all the commands we've learned so far. So...Sep 9, 2023·4 min read
Day 15 Task: Python Libraries for DevOpsAs DevOps engineers, we should be able to parse files, be it Txt, JSON, YAML, etc. Let's study how to use YAML and JSON files with Python. But first, let's understand what are YAML and JSON. What is YAML? YAML (short for "YAML Ain't Markup Language")...Aug 11, 2023·4 min read
Day 14 Task: Python Data Types and Data Structures for DevOpsVariables Variables are containers for storing data values and do not need to be declared with any particular type, and can even change type after they have been set. How to create a variable in Python? To create a variable, just assign any value to ...Aug 9, 2023·4 min read
Day 13 Task: Installing PythonAfter learning basic Linux and Git-GitHub commands, let's start with the Basics of Python as this is also important for DevOps Engineers to build the logic and programs. What is Python? Python is an Open source, general-purpose, high-level, and objec...Aug 9, 2023·2 min read
Day 12 Task: Cheat SheetNow that we have completed the Linux & Git-GitHub hands-on in the last 11 days, let's make a cheat sheet of all the commands we have used so far. Linux Commands - ls : List files and directories in the current directory. pwd: Print the current work...Aug 9, 2023·4 min read
Day 11 Task: Advance Git & GitHub for DevOps Engineers: Part-2Git Stash Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, but you don't want ...Aug 4, 2023·3 min read
Day 10 Task: Advance Git & GitHub for DevOps Engineers.To work with Git and GitHub, you must know how to create branches, merge and rebase them and how revert and reset commits. Git Branching Use a branch to isolate development work without affecting other branches in the repository. Each repository has ...Aug 3, 2023·4 min read