From fe12f755c61421a8683b8364ba25988a424e3e5e Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 27 May 2023 16:55:03 -0500 Subject: [PATCH] update chart --- charts/durpot/templates/deployment.yaml | 3 +++ charts/durpot/values.yaml | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 charts/durpot/values.yaml diff --git a/charts/durpot/templates/deployment.yaml b/charts/durpot/templates/deployment.yaml index a238393..9408544 100644 --- a/charts/durpot/templates/deployment.yaml +++ b/charts/durpot/templates/deployment.yaml @@ -16,6 +16,9 @@ spec: app: durpot spec: containers: + - name: {{ .Chart.Name }} + image: "{{ .Values.deployment.image }}:{{ default .Chart.Version .Values.deployment.tag }}" + imagePullPolicy: {{ .Values.deployment.imagePullPolicy }} - name: durpot image: registry.gitlab.com/developerdurp/durpot imagePullPolicy: Always diff --git a/charts/durpot/values.yaml b/charts/durpot/values.yaml new file mode 100644 index 0000000..6ce520e --- /dev/null +++ b/charts/durpot/values.yaml @@ -0,0 +1,4 @@ +deployment: + image: registry.gitlab.com/developerdurp/durpot + tag: "" + imagePullPolicy: Always \ No newline at end of file