Merge "Add sample template for init containers"

This commit is contained in:
Zuul 2018-10-13 17:26:07 +00:00 committed by Gerrit Code Review
commit 580275b2a9

View File

@ -0,0 +1,25 @@
capsuleVersion: beta
kind: capsule
metadata:
name: init-demo
spec:
containers:
- image: nginx
volumeMounts:
- name: workdir
mountPath: /usr/share/nginx/html
# These containers are run during capsule initialization
initContainers:
- image: busybox
command:
- wget
- "-O"
- "/work-dir/index.html"
- https://www.openstack.org/
volumeMounts:
- name: workdir
mountPath: "/work-dir"
volumes:
- name: workdir
cinder:
size: 1