6ca0fcff0c
Change-Id: If02d95c925dc1e8b537e1609fea314b5b60ed36f
231 lines
7.0 KiB
YAML
231 lines
7.0 KiB
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
vino-role: vino-builder
|
|
template:
|
|
metadata:
|
|
labels:
|
|
vino-role: vino-builder
|
|
spec:
|
|
tolerations:
|
|
- key: node-role.kubernetes.io/master
|
|
effect: NoSchedule
|
|
hostNetwork: true
|
|
hostPID: true
|
|
hostIPC: true
|
|
initContainers:
|
|
- name: create-libvirt-vnc-certs
|
|
image: quay.io/airshipit/gnu-tls:latest-minideb
|
|
imagePullPolicy: IfNotPresent
|
|
command: ["/usr/local/bin/create_tls_cert.sh"]
|
|
args: [ "/etc/pki/libvirt-vnc"]
|
|
volumeMounts:
|
|
- name: etc-pki-libvirt-vnc
|
|
mountPath: "/etc/pki/libvirt-vnc"
|
|
- name: usr-local-bin
|
|
mountPath: "/usr/local/bin"
|
|
|
|
containers:
|
|
- name: libvirt
|
|
command:
|
|
- /tmp/libvirt.sh
|
|
image: quay.io/airshipit/libvirt:latest-ubuntu_bionic
|
|
securityContext:
|
|
privileged: true
|
|
runAsUser: 0
|
|
readOnlyRootFilesystem: false
|
|
volumeMounts:
|
|
- mountPath: /lib/modules
|
|
name: libmodules
|
|
readOnly: true
|
|
- name: var-lib-libvirt
|
|
mountPath: /var/lib/libvirt
|
|
mountPropagation: Bidirectional
|
|
- name: run
|
|
mountPath: /run
|
|
- name: dev
|
|
mountPath: /dev
|
|
- name: cgroup
|
|
mountPath: /sys/fs/cgroup
|
|
- name: logs
|
|
mountPath: /var/log/libvirt
|
|
- name: etc-qemu
|
|
mountPath: /etc/libvirt/qemu
|
|
- name: etc-nwfilter
|
|
mountPath: /etc/libvirt/nwfilter
|
|
- name: etc-hooks
|
|
mountPath: /etc/libvirt/hooks
|
|
- name: etc-storage
|
|
mountPath: /etc/libvirt/storage
|
|
- name: var-lib-vino
|
|
mountPath: /var/lib/vino
|
|
- name: etc-libvirt
|
|
mountPath: /etc/libvirt
|
|
- name: etc-pki-libvirt-vnc
|
|
mountPath: /etc/pki/libvirt-vnc
|
|
|
|
- name: sushy
|
|
image: quay.io/metal3-io/sushy-tools
|
|
imagePullPolicy: IfNotPresent
|
|
command: ["/usr/local/bin/sushy-emulator", "-i", "::", "--debug", "--port", "8000"]
|
|
volumeMounts:
|
|
- name: var-run-libvirt
|
|
mountPath: /var/run/libvirt
|
|
- name: var-lib-libvirt
|
|
mountPath: /var/lib/libvirt
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /redfish/v1/Systems
|
|
host: 127.0.0.1
|
|
port: 8000
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 10
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /redfish/v1/Systems
|
|
host: 127.0.0.1
|
|
port: 8000
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 20
|
|
# - name: vino-reverse-proxy
|
|
# image: quay.io/airshipit/vino-reverse-proxy
|
|
# ports:
|
|
# - containerPort: 8000
|
|
# hostPort: 8000
|
|
# readinessProbe:
|
|
# tcpSocket:
|
|
# port: 8000
|
|
# host: 127.0.0.1
|
|
# initialDelaySeconds: 10
|
|
# periodSeconds: 5
|
|
# livenessProbe:
|
|
# tcpSocket:
|
|
# port: 8000
|
|
# host: 127.0.0.1
|
|
# initialDelaySeconds: 30
|
|
# periodSeconds: 30
|
|
# - name: labeler
|
|
# image: quay.io/airshipit/nodelabeler
|
|
# imagePullPolicy: IfNotPresent
|
|
# env:
|
|
# - name: NODE
|
|
# valueFrom:
|
|
# fieldRef:
|
|
# fieldPath: spec.nodeName
|
|
- name: vino-builder
|
|
readinessProbe:
|
|
initialDelaySeconds: 20
|
|
periodSeconds: 5
|
|
exec:
|
|
command:
|
|
- cat
|
|
- /tmp/healthy
|
|
securityContext:
|
|
privileged: true
|
|
runAsUser: 0
|
|
readOnlyRootFilesystem: false
|
|
ports:
|
|
- containerPort: 8001
|
|
hostPort: 8001
|
|
image: quay.io/airshipit/vino-builder
|
|
imagePullPolicy: IfNotPresent
|
|
volumeMounts:
|
|
- name: flavors
|
|
mountPath: /var/lib/vino-builder/flavors
|
|
- name: flavor-templates
|
|
mountPath: /var/lib/vino-builder/flavor-templates
|
|
- name: network-templates
|
|
mountPath: /var/lib/vino-builder/network-templates
|
|
- name: storage-templates
|
|
mountPath: /var/lib/vino-builder/storage-templates
|
|
- name: pod-tmp
|
|
mountPath: /tmp
|
|
- mountPath: /lib/modules
|
|
name: libmodules
|
|
readOnly: true
|
|
- name: var-lib-libvirt
|
|
mountPath: /var/lib/libvirt
|
|
- name: var-run-libvirt
|
|
mountPath: /var/run/libvirt
|
|
- name: run
|
|
mountPath: /run
|
|
- name: dev
|
|
mountPath: /dev
|
|
- name: cgroup
|
|
mountPath: /sys/fs/cgroup
|
|
- name: logs
|
|
mountPath: /var/log/libvirt
|
|
volumes:
|
|
- name: libmodules
|
|
hostPath:
|
|
path: /lib/modules
|
|
- name: var-lib-libvirt
|
|
hostPath:
|
|
path: /var/lib/libvirt
|
|
- name: run
|
|
hostPath:
|
|
path: /run
|
|
- name: dev
|
|
hostPath:
|
|
path: /dev
|
|
- name: logs
|
|
hostPath:
|
|
path: /var/log/libvirt
|
|
- name: cgroup
|
|
hostPath:
|
|
path: /sys/fs/cgroup
|
|
- name: var-run-libvirt
|
|
hostPath:
|
|
path: /var/run/libvirt
|
|
- name: flavors
|
|
configMap:
|
|
name: vino-flavors
|
|
defaultMode: 0555
|
|
- name: flavor-templates
|
|
configMap:
|
|
name: vino-flavor-templates
|
|
defaultMode: 0555
|
|
- name: network-templates
|
|
configMap:
|
|
name: vino-network-templates
|
|
defaultMode: 0555
|
|
- name: storage-templates
|
|
configMap:
|
|
name: vino-storage-templates
|
|
defaultMode: 0555
|
|
- name: pod-tmp
|
|
emptyDir: {}
|
|
- name: etc-qemu
|
|
hostPath:
|
|
path: /etc/vino-qemu
|
|
type: DirectoryOrCreate
|
|
- name: etc-storage
|
|
hostPath:
|
|
path: /etc/vino-storage
|
|
type: DirectoryOrCreate
|
|
- name: etc-nwfilter
|
|
hostPath:
|
|
path: /etc/vino-nwfilter
|
|
type: DirectoryOrCreate
|
|
- name: etc-hooks
|
|
hostPath:
|
|
path: /etc/vino-hooks
|
|
type: DirectoryOrCreate
|
|
- name: var-lib-vino
|
|
hostPath:
|
|
path: /var/lib/vino
|
|
type: DirectoryOrCreate
|
|
- name: etc-libvirt
|
|
configMap:
|
|
name: vino-libvirt-qemu-conf
|
|
defaultMode: 0555
|
|
- name: etc-pki-libvirt-vnc
|
|
hostPath:
|
|
path: /etc/pki/libvirt-vnc
|
|
- name: usr-local-bin
|
|
configMap:
|
|
name: vino-create-libvirt-vnc-cert
|
|
defaultMode: 0777
|