db79e79788
The current copyright refers to a non-existent group "openstack helm authors" with often out-of-date references that are confusing when adding a new file to the repo. This change removes all references to this copyright by the non-existent group and any blank lines underneath. Change-Id: Ia035037e000f1bf95202fc07b8cd1ad0fc019094
62 lines
3.2 KiB
YAML
62 lines
3.2 KiB
YAML
{{/*
|
|
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.rally.keystone_authtoken.auth_uri -}}
|
|
{{- $_ := tuple "identity" "internal" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_uri_lookup"| set .Values.conf.rally.keystone_authtoken "auth_uri" -}}
|
|
{{- end -}}
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.auth_url -}}
|
|
{{- $_ := tuple "identity" "internal" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_uri_lookup"| set .Values.conf.rally.keystone_authtoken "auth_url" -}}
|
|
{{- end -}}
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.region_name -}}
|
|
{{- $_ := set .Values.conf.rally.keystone_authtoken "region_name" .Values.endpoints.identity.auth.rally.region_name -}}
|
|
{{- end -}}
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.project_name -}}
|
|
{{- $_ := set .Values.conf.rally.keystone_authtoken "project_name" .Values.endpoints.identity.auth.rally.project_name -}}
|
|
{{- end -}}
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.project_domain_name -}}
|
|
{{- $_ := set .Values.conf.rally.keystone_authtoken "project_domain_name" .Values.endpoints.identity.auth.rally.project_domain_name -}}
|
|
{{- end -}}
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.user_domain_name -}}
|
|
{{- $_ := set .Values.conf.rally.keystone_authtoken "user_domain_name" .Values.endpoints.identity.auth.rally.user_domain_name -}}
|
|
{{- end -}}
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.username -}}
|
|
{{- $_ := set .Values.conf.rally.keystone_authtoken "username" .Values.endpoints.identity.auth.rally.username -}}
|
|
{{- end -}}
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.password -}}
|
|
{{- $_ := set .Values.conf.rally.keystone_authtoken "password" .Values.endpoints.identity.auth.rally.password -}}
|
|
{{- end -}}
|
|
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.memcached_servers -}}
|
|
{{- $_ := tuple "oslo_cache" "internal" "memcache" . | include "helm-toolkit.endpoints.host_and_port_endpoint_uri_lookup" | set .Values.conf.rally.keystone_authtoken "memcached_servers" -}}
|
|
{{- end -}}
|
|
{{- if empty .Values.conf.rally.keystone_authtoken.memcache_secret_key -}}
|
|
{{- $_ := set .Values.conf.rally.keystone_authtoken "memcache_secret_key" ( default ( randAlphaNum 64 ) .Values.endpoints.oslo_cache.auth.memcache_secret_key ) -}}
|
|
{{- end -}}
|
|
|
|
{{- if empty .Values.conf.rally.database.connection -}}
|
|
{{- $_ := tuple "oslo_db" "internal" "rally" "mysql" . | include "helm-toolkit.endpoints.authenticated_endpoint_uri_lookup" | set .Values.conf.rally.database "connection" -}}
|
|
{{- end -}}
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: rally-etc
|
|
type: Opaque
|
|
data:
|
|
rally.conf: {{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.rally | b64enc }}
|
|
{{- end }}
|