fix(cinder): solve keyring placement for uppercased backends
Change-Id: Ic384a86f74751dae7ff964688aef30e411fe4b8e
This commit is contained in:
parent
6b504ecd0f
commit
99cf85550b
@ -14,7 +14,7 @@ apiVersion: v1
|
||||
appVersion: v1.0.0
|
||||
description: OpenStack-Helm Cinder
|
||||
name: cinder
|
||||
version: 0.3.5
|
||||
version: 0.3.6
|
||||
home: https://docs.openstack.org/cinder/latest/
|
||||
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
|
||||
sources:
|
||||
|
@ -91,7 +91,7 @@ spec:
|
||||
{{- range $name := rest (splitList "," (include "cinder.utils.ceph_backend_list" $envAll)) }}
|
||||
{{- $backend := index $envAll.Values.conf.backends $name }}
|
||||
{{- if eq $internal_ceph_backend $name }}
|
||||
- name: ceph-keyring-placement-{{$name}}
|
||||
- name: ceph-keyring-placement-{{ $name | lower }}
|
||||
{{ tuple $envAll "cinder_backup" | include "helm-toolkit.snippets.image" | indent 10 }}
|
||||
{{ dict "envAll" $envAll "application" "cinder_backup" "container" "ceph_keyring_placement" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
|
||||
command:
|
||||
|
@ -68,7 +68,7 @@ spec:
|
||||
{{- range $name := rest (splitList "," (include "cinder.utils.ceph_backend_list" $envAll)) }}
|
||||
{{- $backend := index $envAll.Values.conf.backends $name }}
|
||||
{{- if eq $internal_ceph_backend $name }}
|
||||
- name: ceph-keyring-placement-{{$name}}
|
||||
- name: ceph-keyring-placement-{{ $name | lower }}
|
||||
{{ tuple $envAll "cinder_volume" | include "helm-toolkit.snippets.image" | indent 10 }}
|
||||
{{ dict "envAll" $envAll "application" "cinder_volume" "container" "ceph_keyring_placement" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
|
||||
command:
|
||||
|
@ -102,7 +102,7 @@ spec:
|
||||
{{- range $name, $backend := .Values.conf.backends }}
|
||||
{{- if (eq "true" ( dict "backend" $backend | include "cinder.utils.is_ceph_backend" )) }}
|
||||
{{- if eq $internal_ceph_backend $name }}
|
||||
- name: cinder-storage-init-{{$name}}
|
||||
- name: cinder-storage-init-{{ $name | lower }}
|
||||
{{ tuple $envAll "cinder_storage_init" | include "helm-toolkit.snippets.image" | indent 10 }}
|
||||
{{ tuple $envAll $envAll.Values.pod.resources.jobs.storage_init | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
|
||||
env:
|
||||
|
@ -55,4 +55,5 @@ cinder:
|
||||
- 0.3.3 Fix for creation endpoins and services when v1/v2 are disabled
|
||||
- 0.3.4 Fix Helm hooks for storage bootstrap jobs
|
||||
- 0.3.5 Add Nova endpoint details to support online volume resize
|
||||
- 0.3.6 Fix ceph keyring placement for uppercased backends
|
||||
...
|
||||
|
Loading…
Reference in New Issue
Block a user