aad49b2318
Change-Id: I7dc365820a15d7d6b7d8cfee5477e9bfba8cc8bc
26 lines
492 B
YAML
26 lines
492 B
YAML
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
|