From 82cbf802e5e798949500acd089d4218828c58f01 Mon Sep 17 00:00:00 2001 From: Jared Gisin Date: Mon, 18 Oct 2021 22:57:54 -0700 Subject: [PATCH] Update service-s3.tpl to remove erroneous namespace line (#73) * Update service-s3.tpl remove namespace line because: 1. it causes a helm error: Error: UPGRADE FAILED: failed to create resource: namespaces "sorry-cypress" not found 2. it's not in any of the other Service files * Update Chart.yaml Updating chart version as per pull request feedback --- charts/sorry-cypress/Chart.yaml | 2 +- charts/sorry-cypress/templates/service-s3.tpl | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/charts/sorry-cypress/Chart.yaml b/charts/sorry-cypress/Chart.yaml index 21b96ba..d1b2179 100644 --- a/charts/sorry-cypress/Chart.yaml +++ b/charts/sorry-cypress/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: sorry-cypress description: A Helm chart for Sorry Cypress type: application -version: 1.0.8 +version: 1.0.9 appVersion: 1.1.0 home: https://sorry-cypress.dev/ sources: diff --git a/charts/sorry-cypress/templates/service-s3.tpl b/charts/sorry-cypress/templates/service-s3.tpl index cbf95d6..0799b84 100644 --- a/charts/sorry-cypress/templates/service-s3.tpl +++ b/charts/sorry-cypress/templates/service-s3.tpl @@ -3,7 +3,6 @@ apiVersion: v1 kind: Service metadata: name: {{ include "sorry-cypress-helm.fullname" . }}-s3 - namespace: sorry-cypress spec: type: ExternalName externalName: {{ include "s3Host" . }} @@ -12,4 +11,4 @@ spec: port: 80 protocol: TCP targetPort: 80 -{{- end }} \ No newline at end of file +{{- end }}