bcf23c7399
This introduces changes across several charts, for consistent endpoint lookup routines. Today, only the internal endpoints are defined (and copied to admin and public). This can later be expanded to handle unique public and admin endpoints. This ensures the catalog is populated with consistent URLs for all services.
14 lines
367 B
YAML
14 lines
367 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: glance-cephclientglancekeyring
|
|
data:
|
|
ceph.client.{{ .Values.ceph.glance_user }}.keyring: |+
|
|
[client.{{ .Values.ceph.glance_user }}]
|
|
{{- if .Values.ceph.glance_keyring }}
|
|
key = {{ .Values.ceph.glance_keyring }}
|
|
{{- else }}
|
|
key = {{- include "secrets/ceph-client-key" . -}}
|
|
{{- end }}
|
|
|