diff --git a/incubating/hello-world/Chart.yaml b/incubating/hello-world/Chart.yaml index c1c756b..dd6e178 100644 --- a/incubating/hello-world/Chart.yaml +++ b/incubating/hello-world/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v1 appVersion: "1.0" description: A "Hello, World" Helm chart that supports amd64, arm32v6, and arm64v8 name: hello-world -version: 0.2.1-r9 +version: 0.2.1-r10 diff --git a/incubating/hello-world/templates/deployment.yaml b/incubating/hello-world/templates/deployment.yaml index 3ad2c90..72504cd 100644 --- a/incubating/hello-world/templates/deployment.yaml +++ b/incubating/hello-world/templates/deployment.yaml @@ -2,7 +2,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "helloworld.fullname" . }} - namespace: {{ .Values.namespace | default "default" -}} + namespace: {{ .Values.namespace | default "default" }} labels: app.kubernetes.io/name: {{ include "helloworld.name" . }} helm.sh/chart: {{ include "helloworld.chart" . }} diff --git a/incubating/hello-world/templates/service.yaml b/incubating/hello-world/templates/service.yaml index d66eb8f..1541c2f 100644 --- a/incubating/hello-world/templates/service.yaml +++ b/incubating/hello-world/templates/service.yaml @@ -2,7 +2,7 @@ apiVersion: v1 kind: Service metadata: name: {{ include "helloworld.fullname" . }} - namespace: {{ .Values.namespace | default "default" -}} + namespace: {{ .Values.namespace | default "default" }} labels: app.kubernetes.io/name: {{ include "helloworld.name" . }} helm.sh/chart: {{ include "helloworld.chart" . }}