6b844382ad
Change-Id: Ice615c1d252651793dfa09b8e85a5b4228d68737
57 lines
2.4 KiB
YAML
57 lines
2.4 KiB
YAML
{{/*
|
|
Copyright 2017 The Openstack-Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- if .Values.manifests.configmap_etc }}
|
|
{{- $envAll := . }}
|
|
|
|
{{- if empty .Values.conf.keystone.database.connection -}}
|
|
{{- tuple "oslo_db" "internal" "keystone" "mysql" . | include "helm-toolkit.endpoints.authenticated_endpoint_uri_lookup"| set .Values.conf.keystone.database "connection" | quote | trunc 0 -}}
|
|
{{- end -}}
|
|
|
|
{{- if empty .Values.conf.keystone.DEFAULT.transport_url -}}
|
|
{{- tuple "oslo_messaging" "internal" "keystone" "amqp" . | include "helm-toolkit.endpoints.authenticated_endpoint_uri_lookup" | set .Values.conf.keystone.DEFAULT "transport_url" | quote | trunc 0 -}}
|
|
{{- end -}}
|
|
|
|
{{- if empty .Values.conf.keystone.cache.memcache_servers -}}
|
|
{{- tuple "oslo_cache" "internal" "memcache" . | include "helm-toolkit.endpoints.host_and_port_endpoint_uri_lookup" | set .Values.conf.keystone.cache "memcache_servers" | quote | trunc 0 -}}
|
|
{{- end -}}
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: keystone-etc
|
|
data:
|
|
rally_tests.yaml: |
|
|
{{ toYaml .Values.conf.rally_tests.tests | indent 4 }}
|
|
keystone.conf: |
|
|
{{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.keystone | indent 4 }}
|
|
keystone-paste.ini: |
|
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.paste | indent 4 }}
|
|
policy.json: |
|
|
{{ toJson .Values.conf.policy | indent 4 }}
|
|
mpm_event.conf: |
|
|
{{- tuple .Values.conf.mpm_event "etc/_mpm_event.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
|
wsgi-keystone.conf: |
|
|
{{- tuple .Values.conf.wsgi_keystone "etc/_wsgi-keystone.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
|
sso_callback_template.html: |
|
|
{{- tuple .Values.conf.sso_callback_template "etc/_sso_callback_template.html.tpl" . | include "helm-toolkit.utils.configmap_templater" }}
|
|
{{- range $k, $v := .Values.conf.ks_domains }}
|
|
keystone.{{ $k }}.conf: |
|
|
{{ include "helm-toolkit.utils.to_oslo_conf" $v | indent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|