From 969a59ead26557d3eb54279741cbe5f10df6fb74 Mon Sep 17 00:00:00 2001 From: Alexander Matyushentsev Date: Fri, 14 Dec 2018 11:01:22 -0800 Subject: [PATCH] Remove misspelled field from argo chart (#26) --- charts/argo/Chart.yaml | 2 +- charts/argo/templates/ui-deployment.yaml | 3 +-- charts/argo/templates/ui-ingress.yaml | 1 - charts/argo/templates/ui-sa.yaml | 2 +- charts/argo/templates/ui-service.yaml | 1 - charts/argo/templates/workflow-controller-config-map.yaml | 1 - charts/argo/templates/workflow-controller-deployment.yaml | 1 - charts/argo/templates/workflow-controller-sa.yaml | 1 - 8 files changed, 3 insertions(+), 9 deletions(-) diff --git a/charts/argo/Chart.yaml b/charts/argo/Chart.yaml index cb72b8ef..889b3f5e 100644 --- a/charts/argo/Chart.yaml +++ b/charts/argo/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v1 description: A Helm chart for Kubernetes name: argo -version: 0.3.0 +version: 0.3.1 diff --git a/charts/argo/templates/ui-deployment.yaml b/charts/argo/templates/ui-deployment.yaml index fd8b1608..0d7154b0 100644 --- a/charts/argo/templates/ui-deployment.yaml +++ b/charts/argo/templates/ui-deployment.yaml @@ -6,7 +6,6 @@ metadata: chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} - namspace: {{ .Release.Namespace }} spec: template: metadata: @@ -30,4 +29,4 @@ spec: apiVersion: v1 fieldPath: metadata.namespace - name: BASE_HREF - value: / \ No newline at end of file + value: / diff --git a/charts/argo/templates/ui-ingress.yaml b/charts/argo/templates/ui-ingress.yaml index 39dfab75..d931f8f2 100644 --- a/charts/argo/templates/ui-ingress.yaml +++ b/charts/argo/templates/ui-ingress.yaml @@ -9,7 +9,6 @@ metadata: chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} - namspace: {{ .Release.Namespace }} annotations: {{- range $key, $value := .Values.ui.ingress.annotations }} {{ $key }}: {{ $value | quote }} diff --git a/charts/argo/templates/ui-sa.yaml b/charts/argo/templates/ui-sa.yaml index bba4b093..77f322ee 100644 --- a/charts/argo/templates/ui-sa.yaml +++ b/charts/argo/templates/ui-sa.yaml @@ -2,4 +2,4 @@ apiVersion: v1 kind: ServiceAccount metadata: name: {{ .Values.ui.serviceAccount }} - namspace: {{ .Release.Namespace }} + diff --git a/charts/argo/templates/ui-service.yaml b/charts/argo/templates/ui-service.yaml index 23983209..b83e5532 100644 --- a/charts/argo/templates/ui-service.yaml +++ b/charts/argo/templates/ui-service.yaml @@ -6,7 +6,6 @@ metadata: chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} - namspace: {{ .Release.Namespace }} {{- if .Values.ui.serviceAnnotations }} annotations: {{ toYaml .Values.ui.serviceAnnotations | indent 4}}{{- end }} diff --git a/charts/argo/templates/workflow-controller-config-map.yaml b/charts/argo/templates/workflow-controller-config-map.yaml index 241fbdee..4c97cfc6 100644 --- a/charts/argo/templates/workflow-controller-config-map.yaml +++ b/charts/argo/templates/workflow-controller-config-map.yaml @@ -6,7 +6,6 @@ metadata: chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} - namespace: {{ .Release.Namespace }} data: config: | {{- if .Values.controller.instanceID.enabled }} diff --git a/charts/argo/templates/workflow-controller-deployment.yaml b/charts/argo/templates/workflow-controller-deployment.yaml index ea151b21..2f35f983 100644 --- a/charts/argo/templates/workflow-controller-deployment.yaml +++ b/charts/argo/templates/workflow-controller-deployment.yaml @@ -6,7 +6,6 @@ metadata: app: {{ .Release.Name }}-{{ .Values.controller.name}} chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} - namespace: {{ .Release.Namespace }} heritage: {{ .Release.Service }} spec: template: diff --git a/charts/argo/templates/workflow-controller-sa.yaml b/charts/argo/templates/workflow-controller-sa.yaml index c7fa24f0..af3ef519 100644 --- a/charts/argo/templates/workflow-controller-sa.yaml +++ b/charts/argo/templates/workflow-controller-sa.yaml @@ -2,4 +2,3 @@ apiVersion: v1 kind: ServiceAccount metadata: name: {{ .Values.controller.serviceAccount }} - namespace: {{ .Release.Namespace }}