Skip to content

Commit 821a0da

Browse files
authored
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.
1 parent 7ce2d04 commit 821a0da

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

templates/helm/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ spec:
6969
- name: AWS_ENDPOINT_URL
7070
value: {{ .Values.aws.endpoint_url | quote }}
7171
- name: ACK_WATCH_NAMESPACE
72-
value: {{ include "watch-namespace" . }}
72+
value: {{ include "watch-namespace" . }}
7373
- name: ACK_ENABLE_DEVELOPMENT_LOGGING
7474
value: {{ .Values.log.enable_development_logging | quote }}
7575
- name: ACK_LOG_LEVEL

templates/helm/values.yaml.tpl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,14 @@ log:
4444
enable_development_logging: false
4545
level: info
4646

47-
# Set to "namespace" to install the controller in a namespaced scope, will only watch for object creation
48-
# in the namespace. By default installScope is cluster wide.
47+
# Set to "namespace" to install the controller in a namespaced scope, will only
48+
# watch for object creation in the namespace. By default installScope is
49+
# cluster wide.
4950
installScope: cluster
5051

5152
resourceTags:
52-
# Configures the ACK service controller to always set key/value pairs tags on resources that it manages.
53+
# Configures the ACK service controller to always set key/value pairs tags on
54+
# resources that it manages.
5355
- services.k8s.aws/managed=true
5456
- services.k8s.aws/created=%UTCNOW%
5557
- services.k8s.aws/namespace=%KUBERNETES_NAMESPACE%

0 commit comments

Comments
 (0)