apiVersion: v1 kind: Pod metadata: labels: app: ephemeral-heat name: ephemeral-heat annotations: seccomp.security.alpha.kubernetes.io/pod: localhost/seccomp_allow.json spec: hostNetwork: true containers: - command: - heat-engine - --config-file - /etc/heat/heat.conf env: - name: PATH value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin - name: TERM value: xterm - name: container value: oci - name: LANG value: en_US.UTF-8 image: localhost/tripleo/openstack-heat-engine:ephemeral name: engine resources: {} securityContext: allowPrivilegeEscalation: true capabilities: {} privileged: false readOnlyRootFilesystem: false runAsGroup: 0 runAsUser: 0 seLinuxOptions: {} volumeMounts: - mountPath: /var/log/heat name: heat-log - mountPath: /etc/heat/heat.conf name: heat-config readOnly: true workingDir: / - command: - heat-api - --config-file - /etc/heat/heat.conf env: - name: PATH value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin - name: TERM value: xterm - name: container value: oci - name: LANG value: en_US.UTF-8 image: localhost/tripleo/openstack-heat-api:ephemeral name: api resources: {} securityContext: allowPrivilegeEscalation: true capabilities: {} privileged: false readOnlyRootFilesystem: false runAsGroup: 0 runAsUser: 0 seLinuxOptions: {} volumeMounts: - mountPath: /var/log/heat name: heat-log - mountPath: /etc/heat/heat.conf name: heat-config readOnly: true - mountPath: /etc/heat/api-paste.ini name: heat-api-paste readOnly: true - mountPath: /token_file.json name: heat-token-file readOnly: true - mountPath: /etc/heat/noauth_policy.json name: heat-noauth-policy readOnly: true workingDir: / volumes: - hostPath: path: /home/zuul/overcloud-deploy/overcloud/heat-launcher/log type: Directory name: heat-log - hostPath: path: /home/zuul/overcloud-deploy/overcloud/heat-launcher/heat.conf type: File name: heat-config - hostPath: path: /home/zuul/overcloud-deploy/overcloud/heat-launcher/api-paste.ini type: File name: heat-api-paste - hostPath: path: /home/zuul/overcloud-deploy/overcloud/heat-launcher/token_file.json type: File name: heat-token-file - hostPath: path: /usr/lib/python3.9/site-packages/tripleoclient/noauth_policy.json type: File name: heat-noauth-policy status: {}