From 3f868fbc9b625ac85cbf24adee24ff477139aabc Mon Sep 17 00:00:00 2001 From: Yash Mehrotra Date: Tue, 11 Jun 2024 12:33:31 +0530 Subject: [PATCH] chore: address review comments --- chart/templates/deployment.yaml | 2 +- chart/values.yaml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index d8422508..8dcd7584 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -39,7 +39,7 @@ spec: fsGroup: 1000 containers: - name: {{ include "config-db.name" . }} - image: "{{ tpl .Values.global.image.repository . }}/{{ .Values.image.name }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ tpl .Values.global.imageRegistry . }}/{{ .Values.image.name }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} livenessProbe: failureThreshold: 3 diff --git a/chart/values.yaml b/chart/values.yaml index b9e2f0f5..cd0b059a 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -2,8 +2,7 @@ # Declare variables to be passed into your templates. global: - image: - repository: docker.io/flanksource + imageRegistry: docker.io/flanksource db: connectionPooler: enabled: false