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