Pods

kubernetes

How to use and integrate Persistent Volume, Persistent Volume Claims, and Pods in Kubernetes

Reading Time: 5 minutes Prerequisites:- Kubernetes Cluster should be up and running. OVERVIEW Inside our Host Machine, we are setting up the Kubernetes Cluster. Then we have to set up the node, Inside the node, we have three components:- POD, Persistent Volume Claim, and Persistent Volume. These three components will sit inside the node The fourth one is STORAGE which will sit on your host machine i.e. UBUNTU. The Continue Reading

Jenkins builds on Kubernetes cluster

Reading Time: 4 minutes Hello everyone, so in this blog, we are going to learn today that how can we run Jenkins build in Kubernetes as a pod. Jenkins is an open-source tool written in java and also have a plugin built for continuous integration and build automation purpose. It helps in automating the parts of software development related to building, testing, and deploying, facilitating continuous integration and continuous Continue Reading

Kubernetes Pods: The Basic Deployable Unit

Reading Time: 4 minutes Hello readers, I’ll be covering about the basic unit of execution in Kubernetes, which is Pod. What are pods? Pods are the atomic unit of scheduling in kubernetes. Its the smallest and the simplest unit in Kubernetes object model that you create and deploy. A pod consist of 1 or more containers which shares common storage and network namespaces. It is recommended to run a Continue Reading