d8a07ee1cb
This commit addresses the concerns raised in: https://github.com/att-comdev/openstack-helm/pull/77#pullrequestreview-15758654
66 lines
2.2 KiB
YAML
66 lines
2.2 KiB
YAML
{{- $envAll := . }}
|
|
{{- $ksAdminSecret := .Values.keystone_secrets.admin }}
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: heat-ks-endpoints
|
|
spec:
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
pod.beta.kubernetes.io/init-containers: '[
|
|
{
|
|
"name": "init",
|
|
"image": {{ .Values.images.dep_check | quote }},
|
|
"imagePullPolicy": {{ .Values.images.pull_policy | quote }},
|
|
"env": [
|
|
{
|
|
"name": "NAMESPACE",
|
|
"value": "{{ .Release.Namespace }}"
|
|
},
|
|
{
|
|
"name": "DEPENDENCY_SERVICE",
|
|
"value": "{{ include "joinListWithColon" .Values.dependencies.ks_service.service }}"
|
|
},
|
|
{
|
|
"name": "COMMAND",
|
|
"value": "echo done"
|
|
}
|
|
]
|
|
}
|
|
]'
|
|
spec:
|
|
restartPolicy: OnFailure
|
|
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 }}
|
|
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
|