| {{/* |
| 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.clouds.clouds.envvars.auth.auth_url -}} |
| {{- $_ := tuple "identity" "internal" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_uri_lookup"| set .Values.conf.clouds.clouds.envvars.auth "auth_url" -}} |
| {{- end -}} |
| |
| {{- if empty .Values.conf.clouds.clouds.envvars.auth.project_name -}} |
| {{- $_ := set .Values.conf.clouds.clouds.envvars.auth "project_name" .Values.endpoints.identity.auth.admin.project_name -}} |
| {{- end -}} |
| {{- if empty .Values.conf.clouds.clouds.envvars.auth.project_domain_name -}} |
| {{- $_ := set .Values.conf.clouds.clouds.envvars.auth "project_domain_name" .Values.endpoints.identity.auth.admin.project_domain_name -}} |
| {{- end -}} |
| {{- if empty .Values.conf.clouds.clouds.envvars.auth.user_domain_name -}} |
| {{- $_ := set .Values.conf.clouds.clouds.envvars.auth "user_domain_name" .Values.endpoints.identity.auth.admin.user_domain_name -}} |
| {{- end -}} |
| {{- if empty .Values.conf.clouds.clouds.envvars.auth.username -}} |
| {{- $_ := set .Values.conf.clouds.clouds.envvars.auth "username" .Values.endpoints.identity.auth.admin.username -}} |
| {{- end -}} |
| {{- if empty .Values.conf.clouds.clouds.envvars.auth.password -}} |
| {{- $_ := set .Values.conf.clouds.clouds.envvars.auth "password" .Values.endpoints.identity.auth.admin.password -}} |
| {{- end -}} |
| {{- if empty .Values.conf.clouds.clouds.envvars.region_name -}} |
| {{- $_ := set .Values.conf.clouds.clouds.envvars "region_name" .Values.endpoints.identity.auth.admin.region_name -}} |
| {{- end -}} |
| |
| {{- if empty .Values.conf.staffeln.database.connection -}} |
| {{- $_ := tuple "oslo_db" "internal" "staffeln" "mysql" . | include "helm-toolkit.endpoints.authenticated_endpoint_uri_lookup"| set .Values.conf.staffeln.database "connection" -}} |
| {{- end -}} |
| |
| {{- if and (empty .Values.conf.logging.handler_fluent) (has "fluent" .Values.conf.logging.handlers.keys) -}} |
| {{- $fluentd_host := tuple "fluentd" "internal" $envAll | include "helm-toolkit.endpoints.hostname_namespaced_endpoint_lookup" }} |
| {{- $fluentd_port := tuple "fluentd" "internal" "service" $envAll | include "helm-toolkit.endpoints.endpoint_port_lookup" }} |
| {{- $fluent_args := printf "('%s.%s', '%s', %s)" .Release.Namespace .Release.Name $fluentd_host $fluentd_port }} |
| {{- $handler_fluent := dict "class" "fluent.handler.FluentHandler" "formatter" "fluent" "args" $fluent_args -}} |
| {{- $_ := set .Values.conf.logging "handler_fluent" $handler_fluent -}} |
| {{- end -}} |
| |
| {{- if and (empty .Values.conf.logging.formatter_fluent) (has "fluent" .Values.conf.logging.formatters.keys) -}} |
| {{- $formatter_fluent := dict "class" "oslo_log.formatters.FluentFormatter" -}} |
| {{- $_ := set .Values.conf.logging "formatter_fluent" $formatter_fluent -}} |
| {{- end -}} |
| --- |
| apiVersion: v1 |
| kind: Secret |
| metadata: |
| name: staffeln-etc |
| type: Opaque |
| data: |
| staffeln.conf: {{ include "helm-toolkit.utils.to_oslo_conf" .Values.conf.staffeln | b64enc }} |
| openrc: {{ include "staffeln.templates.openrc" . | b64enc }} |
| {{- end }} |