linuxenthusiast.hashnode.devLaunching your First Kubernetes ClusterWhat is minikube? Minikube is software that allows users to run a Kubernetes cluster of just a single node. It is rather fast to set up and makes for a perfect testing environment for developers to see how their containerized application will run on ...Sep 22, 2023路3 min read
linuxenthusiast.hashnode.devKubernetes ArchitectureKubernetes Overview What is Kubernetes? Kubernetes also known as K8s(K8s as an abbreviation results from counting the eight letters between the "K" and the "s") was built by Google based on their experience running containers in production. It is now...Sep 18, 2023路5 min read
linuxenthusiast.hashnode.devJenkins Important interview Questions.Jenkins Interview Here are some Jenkins-specific questions related to Docker that one can use during a DevOps Engineer interview: Questions馃搶 What鈥檚 the difference between continuous integration, continuous delivery, and continuous deployment? Cont...Sep 15, 2023路6 min read
linuxenthusiast.hashnode.devJenkins AgentsJenkins Master (Server) Jenkins鈥檚 server or master node holds all key configurations. The Jenkins master server is like a control server that orchestrates all the workflow defined in the pipelines. For example, scheduling a job, monitoring the jobs, ...Sep 14, 2023路4 min read
linuxenthusiast.hashnode.devJenkins Declarative Pipeline with DockerUse 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. (Make sure you have docker installed with correct permissions. docker run: You can use sh 'd...Sep 8, 2023路2 min read