Skip to content

fix(ironic): ensure tftpboot path is created #1029

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions components/ironic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ conductor:
pxe:
# at this time we are running our own dnsmasq container and statefulset
enabled: false
initContainers:
# this can go away once we disable the ilo-ipxe and ipxe boot interfaces
# it is only necessary because the above pxe is disabled, its init
# creates this path
- name: create-tftpboot
image: docker.io/openstackhelm/heat:2024.2-ubuntu_jammy
imagePullPolicy: IfNotPresent
command: [bash]
args:
- "-c"
- "mkdir -p /var/lib/openstack-helm/tftpboot"
volumeMounts:
- name: pod-data
mountPath: /var/lib/openstack-helm

labels:
conductor:
Expand Down