
It also makes two other changes: * Moves the entrypoint container manifest snippet to its own file to reduce loading on the _funcs.tpl file * Changes dep-check-init-cont to dep_check_init_cont to match the formatting of other defines used in OpenStack Helm
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
{{- $envAll := . }}
|
|
{{- $dependecies := .Values.dependencies.db_sync }}
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: keystone-db-sync
|
|
spec:
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
pod.beta.kubernetes.io/init-containers: '[
|
|
{{ tuple $envAll $dependecies | include "dep_check_init_cont" | indent 10 }}
|
|
]'
|
|
spec:
|
|
restartPolicy: OnFailure
|
|
nodeSelector:
|
|
{{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }}
|
|
containers:
|
|
- name: keystone-db-sync
|
|
image: {{ .Values.images.db_sync }}
|
|
imagePullPolicy: {{ .Values.images.pull_policy }}
|
|
command:
|
|
- bash
|
|
- /tmp/db-sync.sh
|
|
volumeMounts:
|
|
- name: pod-etc-keystone
|
|
mountPath: /etc/keystone
|
|
- name: keystoneconf
|
|
mountPath: /etc/keystone/keystone.conf
|
|
subPath: keystone.conf
|
|
readOnly: true
|
|
- name: keystone-bin
|
|
mountPath: /tmp/db-sync.sh
|
|
subPath: db-sync.sh
|
|
readOnly: true
|
|
volumes:
|
|
- name: pod-etc-keystone
|
|
emptyDir: {}
|
|
- name: keystoneconf
|
|
configMap:
|
|
name: keystone-etc
|
|
- name: keystone-bin
|
|
configMap:
|
|
name: keystone-bin
|