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
57 lines
1.9 KiB
YAML
57 lines
1.9 KiB
YAML
{{- $envAll := . }}
|
|
{{- $dependencies := .Values.dependencies.db_sync }}
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: neutron-db-sync
|
|
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-sync
|
|
image: {{ .Values.images.db_sync }}
|
|
imagePullPolicy: {{ .Values.images.pull_policy }}
|
|
command:
|
|
- neutron-db-manage
|
|
- --config-file
|
|
- /etc/neutron/neutron.conf
|
|
- --config-file
|
|
- /etc/neutron/plugins/ml2/ml2-conf.ini
|
|
- upgrade
|
|
- head
|
|
{{- if .Values.resources.enabled }}
|
|
resources:
|
|
limits:
|
|
cpu: {{ .Values.resources.jobs.db_sync.limits.cpu | quote }}
|
|
memory: {{ .Values.resources.jobs.db_sync.limits.memory | quote }}
|
|
requests:
|
|
cpu: {{ .Values.resources.jobs.db_sync.requests.cpu | quote }}
|
|
memory: {{ .Values.resources.jobs.db_sync.requests.memory | quote }}
|
|
{{- end }}
|
|
volumeMounts:
|
|
- name: pod-etc-neutron
|
|
mountPath: /etc/neutron
|
|
- name: neutronconf
|
|
mountPath: /etc/neutron/neutron.conf
|
|
subPath: neutron.conf
|
|
- name: ml2confini
|
|
mountPath: /etc/neutron/plugins/ml2/ml2-conf.ini
|
|
subPath: ml2-conf.ini
|
|
volumes:
|
|
- name: pod-etc-neutron
|
|
emptyDir: {}
|
|
- name: neutronconf
|
|
configMap:
|
|
name: neutron-etc
|
|
- name: ml2confini
|
|
configMap:
|
|
name: neutron-etc
|