Setting up Microk8sMicroK8s is a lightweight Kubernetes distribution developed by Canonical, the company behind Ubuntu. It's designed for easy deployment and testing on a single machine or small clusters. MicroK8s provides a quick way to set up a Kubernetes environment...Apr 17, 2024·2 min read
Day 14: Python Data Types and Data Structures#Day14 of #90DaysofDevops challenge Click here to view Day 14 Task. Data Types Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Sinc...Feb 24, 2023·3 min read
Day 13: Basics of Python#Day13 of #90DaysofDevops challenge Click here to view Day 13 Task. What is Python? Python is Open source, general purpose, high-level, and object-oriented programming language. It was created by Guido van Rossum. Python consists of vast libraries...Feb 23, 2023·2 min read
Day 12: Git Cheat Sheet#Day12 of #90DaysofDevops challenge Click here to view Day 12 Task. git init - Create empty Git repo in the specified directory. Run with no arguments to initialize the current directory as a git repository. git clone <repo> - Clone repo located at...Feb 22, 2023·3 min read
Day 11: Advance Git & GitHub, Part- 2#Day11 of #90DaysofDevops challenge Click here to view Day 10 task. Git 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 ...Feb 22, 2023·3 min read
Day 10: Advance Git & GitHub#Day10 of #90DaysofDevops challenge Click here to view Day 10 task. Git Branching Git branching is a feature of the Git version control system that allows developers to create multiple parallel versions of a project, called "branches". Each branch is...Feb 20, 2023·4 min read
Day 9: Deep Dive into Git & GitHub#Day9 of #90DaysofDevops challenge Click here to view Day 9 Task What is Git and why is it important? Git is a distributed version control system designed to track changes to code or any other type of digital content. It was created by Linus Torvalds...Feb 19, 2023·4 min read