Add rediness probe for vino-builder

Change-Id: I8728a9836a50fbbe84e4d6913e58935a9a5e8864
This commit is contained in:
Kostiantyn Kalynovskyi 2021-04-15 21:50:49 +00:00
parent 0e8a48b5cb
commit 9cc982293b
1 changed files with 13 additions and 6 deletions

View File

@ -41,6 +41,8 @@ spec:
mountPath: /sys/fs/cgroup
- name: logs
mountPath: /var/log/libvirt
- name: vino-storage-pool
mountPath: /var/lib/libvirt/vino
- name: sushy
ports:
- containerPort: 8000
@ -51,6 +53,8 @@ spec:
volumeMounts:
- name: var-run-libvirt
mountPath: /var/run/libvirt
- name: var-lib-libvirt-images
mountPath: /var/lib/libvirt/images
- name: labeler
image: quay.io/airshipit/nodelabeler
imagePullPolicy: IfNotPresent
@ -60,12 +64,13 @@ spec:
fieldRef:
fieldPath: spec.nodeName
- name: vino-builder
command:
- bash
- -cex
- |
/entrypoint.sh || true
tail -f /dev/null
readinessProbe:
initialDelaySeconds: 20
periodSeconds: 5
exec:
command:
- cat
- /tmp/healthy
securityContext:
privileged: true
runAsUser: 0
@ -144,3 +149,5 @@ spec:
defaultMode: 0555
- name: pod-tmp
emptyDir: {}
- name: vino-storage-pool
emptyDir: {}