![Marcellin Tchassem](/assets/img/avatar_default.png)
* Add resources limits and requests for each chart * Refactor the resources limits and requests to follow a patern * Fix some coding issues * fix issues resulting from feedback on the resources PR * Reset some variables to a static value in the neutron chart. * Substituting variable entrypoint by dependency_check in the concerned files * Few adjustments * Update deploy-region.yaml * Update deployment.yaml * Add resources limits and requests for each chart Squah all commits in one. * Add resources limits and requests for some charts * cleaning * Fix indendation issue * Update deployment.yaml * Update daemonset-ovs-vswitchd.yaml
54 lines
1.7 KiB
YAML
54 lines
1.7 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 }}
|
|
{{- 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 }}
|
|
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
|