From 8d496f49d9969dc1244ea8f205ecbbfdaa8b5173 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Mon, 30 Jun 2025 12:28:33 -0500 Subject: [PATCH] [ironic]: add default TLS secret names Other charts have default TLS secret names so add them for Ironic so it behaves like the other charts do by default. Change-Id: Iafcbb980dbe2e43acdb6b8b12b40ea3138444c77 --- ironic/values.yaml | 5 +++++ releasenotes/notes/ironic-4963b8bfe3c212d0.yaml | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 releasenotes/notes/ironic-4963b8bfe3c212d0.yaml diff --git a/ironic/values.yaml b/ironic/values.yaml index 6aece995fb..e20acbf6f3 100644 --- a/ironic/values.yaml +++ b/ironic/values.yaml @@ -441,6 +441,11 @@ secrets: ironic: ironic-rabbitmq-user oci_image_registry: ironic: ironic-oci-image-registry + tls: + baremetal: + api: + public: ironic-tls-public + internal: ironic-tls-api # typically overridden by environmental # values, but should include all endpoints diff --git a/releasenotes/notes/ironic-4963b8bfe3c212d0.yaml b/releasenotes/notes/ironic-4963b8bfe3c212d0.yaml new file mode 100644 index 0000000000..19b921ef49 --- /dev/null +++ b/releasenotes/notes/ironic-4963b8bfe3c212d0.yaml @@ -0,0 +1,5 @@ +--- +ironic: + - | + Add default TLS secret names like the other charts have. +...