diff --git a/.gitignore b/.gitignore index 600d2d3..aafda3a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.vscode \ No newline at end of file +.vscode +.idea diff --git a/charts/payment-gateway/templates/celery/beat/deployment.yaml b/charts/payment-gateway/templates/celery/beat/deployment.yaml index 0b53a41..5a4ae8e 100644 --- a/charts/payment-gateway/templates/celery/beat/deployment.yaml +++ b/charts/payment-gateway/templates/celery/beat/deployment.yaml @@ -27,7 +27,7 @@ spec: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.global.imagePullPolicy }} - args: ["celery_beat"] + args: ["beat"] envFrom: {{ include "keyvault.secretRef" . | nindent 12 }} - configMapRef: diff --git a/charts/payment-gateway/templates/celery/flower/deployment.yaml b/charts/payment-gateway/templates/celery/flower/deployment.yaml index a418754..e6c109f 100644 --- a/charts/payment-gateway/templates/celery/flower/deployment.yaml +++ b/charts/payment-gateway/templates/celery/flower/deployment.yaml @@ -33,7 +33,7 @@ spec: securityContext: {{- toYaml .Values.flower.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" - args: [celery_flower] + args: [flower] imagePullPolicy: {{ .Values.global.imagePullPolicy }} envFrom: - configMapRef: diff --git a/charts/payment-gateway/templates/celery/worker/deployment.yaml b/charts/payment-gateway/templates/celery/worker/deployment.yaml index f00a43d..a8598f9 100644 --- a/charts/payment-gateway/templates/celery/worker/deployment.yaml +++ b/charts/payment-gateway/templates/celery/worker/deployment.yaml @@ -36,7 +36,7 @@ spec: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.global.imagePullPolicy }} - args: ["celery_worker"] + args: ["worker"] envFrom: {{ include "keyvault.secretRef" . | nindent 12 }} - configMapRef: