116931bb51
* Rename common chart to helm-toolkit * Update useage of helpers to include reference to chart they come from. * Update helm-toolkit function naming Also catches several functions missed in previous PS * Update remaining requirements.yaml to use helm-toolbox * Dep Check container fix for common -> helm-toolbox renaming
33 lines
953 B
YAML
33 lines
953 B
YAML
{{- $envAll := . }}
|
|
{{- $dependencies := .Values.dependencies.db_init }}
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: neutron-db-init
|
|
spec:
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
pod.beta.kubernetes.io/init-containers: '[
|
|
{{ tuple $envAll $dependencies | include "helm-toolkit.kubernetes_entrypoint_init_container" | indent 10 }}
|
|
]'
|
|
spec:
|
|
restartPolicy: OnFailure
|
|
nodeSelector:
|
|
{{ .Values.labels.server.node_selector_key }}: {{ .Values.labels.server.node_selector_value }}
|
|
containers:
|
|
- name: neutron-db-init
|
|
image: {{ .Values.images.db_init }}
|
|
imagePullPolicy: {{ .Values.images.pull_policy }}
|
|
command:
|
|
- bash
|
|
- /tmp/init.sh
|
|
volumeMounts:
|
|
- name: initsh
|
|
mountPath: /tmp/init.sh
|
|
subPath: init.sh
|
|
volumes:
|
|
- name: initsh
|
|
configMap:
|
|
name: neutron-bin
|