{{- $envAll := . }} {{- $ksAdminSecret := .Values.keystone_secrets.admin }} {{- $dependencies := .Values.dependencies.ks_endpoints }} apiVersion: batch/v1 kind: Job metadata: name: heat-ks-endpoints spec: template: metadata: annotations: pod.beta.kubernetes.io/init-containers: '[ {{ tuple $envAll $dependencies | include "dep_check_init_cont" | indent 10 }} ]' spec: restartPolicy: OnFailure nodeSelector: {{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }} containers: {{- range $key1, $osServiceName := tuple "heat" "heat-cfn" }} {{- range $key2, $osServiceEndPoint := tuple "admin" "internal" "public" }} - name: {{ $osServiceName }}-ks-endpoints-{{ $osServiceEndPoint }} image: {{ $envAll.Values.images.ks_endpoints }} imagePullPolicy: {{ $envAll.Values.images.pull_policy }} {{- if $envAll.Values.resources.enabled }} resources: requests: memory: {{ $envAll.Values.resources.heat_ks_endpoints.requests.memory | quote }} cpu: {{ $envAll.Values.resources.heat_ks_endpoints.requests.cpu | quote }} limits: memory: {{ $envAll.Values.resources.heat_ks_endpoints.limits.memory | quote }} cpu: {{ $envAll.Values.resources.heat_ks_endpoints.limits.cpu | quote }} {{- end }} command: - bash - /tmp/ks-endpoints.sh volumeMounts: - name: ks-endpoints-sh mountPath: /tmp/ks-endpoints.sh subPath: ks-endpoints.sh readOnly: true env: {{- with $env := dict "ksUserSecret" $ksAdminSecret }} {{- include "env_ks_openrc_tpl" $env | indent 12 }} {{- end }} - name: OS_SVC_ENDPOINT value: {{ $osServiceEndPoint }} - name: OS_SERVICE_NAME value: {{ $osServiceName }} - name: OS_SERVICE_TYPE value: {{ tuple $osServiceName $envAll | include "endpoint_type_lookup" }} - name: OS_SERVICE_ENDPOINT value: {{ tuple $osServiceName $osServiceEndPoint "api" $envAll | include "endpoint_addr_lookup" }} {{- end }} {{- end }} volumes: - name: ks-endpoints-sh configMap: name: heat-bin