Skip to content

Commit c1995e9

Browse files
committed
MINOR: kubernetes-ingress: Resolve lint issues from #171
Signed-off-by: Dinko Korunic <[email protected]>
1 parent 926191c commit c1995e9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

kubernetes-ingress/templates/controller-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
{{ toYaml .Values.controller.podAnnotations | indent 8 }}
5656
{{- end }}
5757
spec:
58-
enableServiceLinks: {{ default true ."Values.controller.enableServiceLinks" }}
58+
enableServiceLinks: {{ default true .Values.controller.enableServiceLinks }}
5959
serviceAccountName: {{ template "kubernetes-ingress.serviceAccountName" . }}
6060
terminationGracePeriodSeconds: {{ .Values.controller.terminationGracePeriodSeconds }}
6161
{{- if $useHostNetwork }}

kubernetes-ingress/templates/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
{{ toYaml .Values.controller.podAnnotations | indent 8 }}
5656
{{- end }}
5757
spec:
58-
enableServiceLinks: {{ default true ."Values.controller.enableServiceLinks" }}
58+
enableServiceLinks: {{ default true .Values.controller.enableServiceLinks }}
5959
serviceAccountName: {{ template "kubernetes-ingress.serviceAccountName" . }}
6060
terminationGracePeriodSeconds: {{ .Values.controller.terminationGracePeriodSeconds }}
6161
{{- with .Values.controller.topologySpreadConstraints }}

kubernetes-ingress/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ controller:
174174
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
175175
podAnnotations: {}
176176
# key: value
177-
177+
178178
## Allows to enable/disable environment variables for finding services
179179
## ref: https://kubernetes.io/docs/tutorials/services/connect-applications-service/#accessing-the-service
180180
## Note: Possible performance issues in large clusters: https://github.com/kubernetes/kubernetes/issues/92615

0 commit comments

Comments
 (0)