...

/

Creating Deployment for Attaching Claimed Volumes to Pods

Creating Deployment for Attaching Claimed Volumes to Pods

In this lesson, we will create a Jenkins deployment for attaching claimed volumes to pods and look into the sequence of associated events.

In the previous lesson, we looked into claiming the persistent volumes. The next step is to attach these claimed volumes to pods.

Looking into the Definition

Let’s look into a Jenkins definition.

Press + to interact
cat pv/jenkins-pv.yml

The relevant parts of the output as as follows.

Press + to interact
...
apiVersion: apps/v1beta2
kind: Deployment
metadata:
name: jenkins
namespace: jenkins
spec:
...
template:
...
spec:
containers:
- name: jenkins
...
volumeMounts:
- name: jenkins-home
mountPath: /var/jenkins_home
...
volumes:
- name: jenkins-home
persistentVolumeClaim:
claimName: jenkins
...

You’ll notice that, this time, we added a new volume jenkins-home, which references the PersistentVolumeClaim called jenkins. ...

Access this course and 1400+ top-rated courses and projects.