...

/

Mounting Generic Secrets

Mounting Generic Secrets

In this lesson, we will mount the generic Secret to secure the deployed Jenkins.

Looking into the Definition

Let’s see how we could mount the Secret we created.

Press + to interact
cat secret/jenkins.yml

The output, limited to the relevant parts, is as follows.

Press + to interact
apiVersion: apps/v1beta2
kind: Deployment
metadata:
name: jenkins
spec:
...
template:
...
spec:
containers:
- name: jenkins
image: vfarcic/jenkins
env:
- name: JENKINS_OPTS
value: --prefix=/jenkins
volumeMounts:
- name: jenkins-home
mountPath: /var/jenkins_home
- name: jenkins-creds
mountPath: /etc/secrets
volumes:
- name: jenkins-home
emptyDir: {}
- name: jenkins-creds
secret:
secretName: my-creds
defaultMode: 0444
items:
- key: username
path: jenkins-user
- key: password
path: jenkins-pass
...

Line 19-20: We added jenkins-creds that mounts the /etc/secrets directory.

Line 24-26: The jenkins-creds Volume references the Secret named ...

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