Merge "nova: Remove memcache configs from [ironic] section"

This commit is contained in:
Zuul
2026-03-24 00:49:46 +00:00
committed by Gerrit Code Review
2 changed files with 6 additions and 8 deletions

View File

@@ -163,14 +163,6 @@ limitations under the License.
{{- $_ := set .Values.conf.nova.ironic "auth_version" .Values.endpoints.identity.auth.ironic.auth_version -}}
{{- end -}}
{{- if empty .Values.conf.nova.ironic.memcache_secret_key -}}
{{- $_ := (default (randAlphaNum 64) .Values.endpoints.oslo_cache.auth.memcache_secret_key) | set .Values.conf.nova.ironic "memcache_secret_key" -}}
{{- end -}}
{{- if empty .Values.conf.nova.ironic.memcache_servers -}}
{{- $_ := tuple "oslo_cache" "internal" "memcache" . | include "helm-toolkit.endpoints.host_and_port_endpoint_uri_lookup" | set .Values.conf.nova.ironic "memcache_servers" -}}
{{- end -}}
{{- if .Values.conf.nova.cinder.auth_type -}}
{{- if eq .Values.conf.nova.cinder.auth_type "password" -}}

View File

@@ -0,0 +1,6 @@
---
nova:
- |
Remove `memcache_servers` and `memcache_secret_key` from `[ironic]` section.
It was found that nothing consumes those configurations.
...