We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8bdb036 + a9cbafa commit 6f27ce6Copy full SHA for 6f27ce6
components/ironic/values.yaml
@@ -17,6 +17,20 @@ conductor:
17
pxe:
18
# at this time we are running our own dnsmasq container and statefulset
19
enabled: false
20
+ initContainers:
21
+ # this can go away once we disable the ilo-ipxe and ipxe boot interfaces
22
+ # it is only necessary because the above pxe is disabled, its init
23
+ # creates this path
24
+ - name: create-tftpboot
25
+ image: docker.io/openstackhelm/heat:2024.2-ubuntu_jammy
26
+ imagePullPolicy: IfNotPresent
27
+ command: [bash]
28
+ args:
29
+ - "-c"
30
+ - "mkdir -p /var/lib/openstack-helm/tftpboot"
31
+ volumeMounts:
32
+ - name: pod-data
33
+ mountPath: /var/lib/openstack-helm
34
35
labels:
36
conductor:
0 commit comments