Day 38 Getting Started with AWS Basics☁AWS: AWS (Amazon Web Services) is a comprehensive cloud computing platform offered by Amazon. It provides a wide range of services including storage, computing power, networking, databases, and more. With AWS, businesses can scale their infrastructur...Jun 9, 2023·4 min read
Day 33 Task: Working with Namespaces and Services in Kubernetes.What Is a Kubernetes Namespace? A Namespace is a Kubernetes object that helps group and structure other Kubernetes objects and partitions them in a Kubernetes cluster. This concept allows you to organize or isolate your Kubernetes resources in a box-...May 18, 2023·3 min read
Day 32 Task: Launching your Kubernetes Cluster with DeploymentCongratulation ! on your learning on K8s on Day-31 What is Deployment in k8s? A deployment is an object in Kubernetes that helps you to manage a group of identical pods. Without a deployment, you’d got to produce, update, and delete a bunch of pods m...May 12, 2023·2 min read
Day 31 Task: Launching your First Kubernetes Cluster with a Django-todo app running.Awesome! You learned the architecture of one of the top most important tools "Kubernetes" in your previous task. What about doing some hands-on now? Let's read about Kubeadm and implement k8s in our local machine What is Kubeadm? Kubeadm is a tool ...May 11, 2023·3 min read
Day 30 Task: Kubernetes ArchitectureKubernetes Overview Kubernetes is an open-source platform used alongside Docker to deploy, maintain, and implement container applications. A container application is an application that has all its packages, files, and necessary libraries required to...May 5, 2023·4 min read
Day 29 Task: Jenkins Important interview Questions.Jenkins Interview Here are some Jenkins-specific questions related to Docker that one can use during a DevOps Engineer interview: 1)What’s the difference between continuous integration, continuous delivery, and continuous deployment? Continuous Integ...May 4, 2023·8 min read
Day27 and Day 28:Jenkins Declarative Pipeline with Docker and Jenkins AgentsUse your Docker Build and Run Knowledge docker build - you can use sh 'docker build . -t <tag>' in your pipeline stage block to run the docker build command. docker run: you can use sh 'docker run -d <image>' in your pipeline stage block to build the...Apr 28, 2023·4 min read