diff --git a/config/manager/daemonset-template.yaml b/config/manager/daemonset-template.yaml index 39d9057..8637d18 100644 --- a/config/manager/daemonset-template.yaml +++ b/config/manager/daemonset-template.yaml @@ -41,6 +41,16 @@ spec: mountPath: /sys/fs/cgroup - name: logs mountPath: /var/log/libvirt + - name: sushy + ports: + - containerPort: 8000 + hostPort: 8000 + image: quay.io/metal3-io/sushy-tools + imagePullPolicy: IfNotPresent + command: ["/usr/local/bin/sushy-emulator"] + volumeMounts: + - name: var-run-libvirt + mountPath: /var/run/libvirt volumes: - name: libmodules hostPath: @@ -63,3 +73,6 @@ spec: - name: cgroup hostPath: path: /sys/fs/cgroup + - name: var-run-libvirt + hostPath: + path: /var/run/libvirt