From 4f2e4741d6de9c1e9297097aae954069acc16f42 Mon Sep 17 00:00:00 2001 From: Om More <51229945+thisisommore@users.noreply.github.com> Date: Thu, 3 Nov 2022 13:22:01 +0530 Subject: [PATCH] deployment: don't use quotes for image --- charts/deployment/Chart.yaml | 2 +- charts/deployment/templates/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/deployment/Chart.yaml b/charts/deployment/Chart.yaml index ed4069c..4c8e089 100644 --- a/charts/deployment/Chart.yaml +++ b/charts/deployment/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.4 +version: 0.1.5 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/deployment/templates/deployment.yaml b/charts/deployment/templates/deployment.yaml index ba3a61d..02181a3 100644 --- a/charts/deployment/templates/deployment.yaml +++ b/charts/deployment/templates/deployment.yaml @@ -14,7 +14,7 @@ spec: spec: containers: - name: {{.Values.name }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + image: {{ .Values.image.repository }}:{{ .Values.image.tag}} resources: limits: memory: "512Mi"