diff --git a/helm-charts/infisical/templates/backend-deployment.yaml b/helm-charts/infisical/templates/backend-deployment.yaml index 437995e586..f3d8a2ed47 100644 --- a/helm-charts/infisical/templates/backend-deployment.yaml +++ b/helm-charts/infisical/templates/backend-deployment.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: backend - image: infisical/backend + image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.backend.image.pullPolicy }} ports: - containerPort: 4000 diff --git a/helm-charts/infisical/templates/frontend-deployment.yaml b/helm-charts/infisical/templates/frontend-deployment.yaml index 14be955062..da9b4d828f 100644 --- a/helm-charts/infisical/templates/frontend-deployment.yaml +++ b/helm-charts/infisical/templates/frontend-deployment.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: frontend - image: infisical/frontend + image: "{{ .Values.frontend.image.repository }}:{{ .Values.frontend.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.frontend.image.pullPolicy }} {{- if .Values.frontend.kubeSecretRef }} envFrom: diff --git a/helm-charts/infisical/values.yaml b/helm-charts/infisical/values.yaml index 743c1e25b9..0633c21270 100644 --- a/helm-charts/infisical/values.yaml +++ b/helm-charts/infisical/values.yaml @@ -6,7 +6,7 @@ frontend: replicaCount: 1 image: - repository: + repository: infisical/frontend pullPolicy: IfNotPresent tag: "latest" # kubeSecretRef: some-kube-secret-name @@ -15,7 +15,7 @@ frontend: backend: replicaCount: 1 image: - repository: + repository: infisical/backend pullPolicy: IfNotPresent tag: "latest" # kubeSecretRef: some-kube-secret-name