From 821a0daf362fdda8148046310c3eb478b96366ac Mon Sep 17 00:00:00 2001 From: Jay Pipes Date: Wed, 18 Aug 2021 08:53:00 -0400 Subject: [PATCH] small helm template fixes (#159) Fixes a couple tiny issues I saw in generating release artifacts recently: some rogue whitespace and wrapping comments at 80 chars By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. --- templates/helm/templates/deployment.yaml | 2 +- templates/helm/values.yaml.tpl | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/templates/helm/templates/deployment.yaml b/templates/helm/templates/deployment.yaml index 5299f739..b28b454b 100644 --- a/templates/helm/templates/deployment.yaml +++ b/templates/helm/templates/deployment.yaml @@ -69,7 +69,7 @@ spec: - name: AWS_ENDPOINT_URL value: {{ .Values.aws.endpoint_url | quote }} - name: ACK_WATCH_NAMESPACE - value: {{ include "watch-namespace" . }} + value: {{ include "watch-namespace" . }} - name: ACK_ENABLE_DEVELOPMENT_LOGGING value: {{ .Values.log.enable_development_logging | quote }} - name: ACK_LOG_LEVEL diff --git a/templates/helm/values.yaml.tpl b/templates/helm/values.yaml.tpl index cfd3ae41..3ef1b373 100644 --- a/templates/helm/values.yaml.tpl +++ b/templates/helm/values.yaml.tpl @@ -44,12 +44,14 @@ log: enable_development_logging: false level: info -# Set to "namespace" to install the controller in a namespaced scope, will only watch for object creation -# in the namespace. By default installScope is cluster wide. +# Set to "namespace" to install the controller in a namespaced scope, will only +# watch for object creation in the namespace. By default installScope is +# cluster wide. installScope: cluster resourceTags: - # Configures the ACK service controller to always set key/value pairs tags on resources that it manages. + # Configures the ACK service controller to always set key/value pairs tags on + # resources that it manages. - services.k8s.aws/managed=true - services.k8s.aws/created=%UTCNOW% - services.k8s.aws/namespace=%KUBERNETES_NAMESPACE%