fix: neutron-ironic-agent having invalid volumes spec

Since 0e7fe77f49 the volumes spec for neutron-ironic-agent has been
invalid.

Change-Id: I62e83af1e3845ea0cbd8d643cb1a29fd3c2bd5dd
This commit is contained in:
Doug Goldstein
2025-06-13 15:14:19 -05:00
parent 896a543280
commit 3225ad74a6
2 changed files with 7 additions and 1 deletions

View File

@@ -122,7 +122,7 @@ spec:
- name: pod-var-neutron
emptyDir: {}
- name: pod-shared
mountPath: /tmp/pod-shared
emptyDir: {}
- name: neutron-bin
configMap:
name: neutron-bin

View File

@@ -0,0 +1,6 @@
---
fixes:
- |
Since 0e7fe77f49 neutron-ironic-agent has had an invalid volumes spec. Fix the
spec so the agent can run.
...