From df2fa9b5600c2bae2d2a583e17fea265d83c5503 Mon Sep 17 00:00:00 2001 From: Richard Kuo Date: Thu, 7 Nov 2024 00:38:23 -0800 Subject: [PATCH] try another approach to quotes --- charts/vespa/Chart.yaml | 2 +- charts/vespa/templates/tests/test-connection.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/vespa/Chart.yaml b/charts/vespa/Chart.yaml index 9005083..c540d0d 100644 --- a/charts/vespa/Chart.yaml +++ b/charts/vespa/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.2.13 +version: 0.2.14 # 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/vespa/templates/tests/test-connection.yaml b/charts/vespa/templates/tests/test-connection.yaml index 6d2950b..b5a1d0c 100644 --- a/charts/vespa/templates/tests/test-connection.yaml +++ b/charts/vespa/templates/tests/test-connection.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: Pod metadata: - name: "{{ include 'vespa.fullname' . }}-test-connection" + name: {{ include vespa.fullname' . }}-test-connection labels: {{- include "vespa.labels" . | nindent 4 }} annotations: @@ -11,5 +11,5 @@ spec: - name: wget image: busybox command: ['wget'] - args: ["{{ include 'vespa.healthEndpoint' . }}"] + args: [{{ include "vespa.healthEndpoint" . }}] restartPolicy: Never