🚚(helm) specify unique component names for all backend jobs

Update backend job configurations to use distinct component names instead of
sharing names with deployments. Prevents conflicts during cluster updates
and migrations that were causing unexpected behavior. Improves deployment
reliability and resource identification.
This commit is contained in:
lebaudantoine
2025-04-22 14:24:51 +02:00
committed by aleb_the_flash
parent 0206762e6d
commit d2da1e37b9
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{{- $envVars := include "meet.common.env" (list . .Values.backend) -}}
{{- $fullName := include "meet.backend.fullname" . -}}
{{- $component := "backend" -}}
{{- $component := "backend-createsuperuser" -}}
apiVersion: batch/v1
kind: Job
metadata:

View File

@@ -1,6 +1,6 @@
{{- $envVars := include "meet.common.env" (list . .Values.backend) -}}
{{- $fullName := include "meet.backend.fullname" . -}}
{{- $component := "backend" -}}
{{- $component := "backend-migrate" -}}
apiVersion: batch/v1
kind: Job
metadata: