Skip to content

Commit

Permalink
Helm: Fix external-service cli argument templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean-Coakley committed Aug 13, 2018
1 parent b06f219 commit 85749e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion helm-chart/templates/controller-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ spec:
- -health-status
{{- end }}
{{- if and (.Values.controller.reportIngressStatus.enable) (.Values.controller.reportIngressStatus.externalService) }}
- -external-service
- -external-service={{ .Values.controller.reportIngressStatus.externalService }}
{{- end }}
{{ if .Values.controller.enableLeaderElection }}
- -enable-leader-election
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/templates/controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ spec:
- -health-status
{{- end }}
{{- if and (.Values.controller.reportIngressStatus.enable) (.Values.controller.reportIngressStatus.externalService) }}
- -external-service
- -external-service={{ .Values.controller.reportIngressStatus.externalService }}
{{- end }}
{{ if .Values.controller.enableLeaderElection }}
- -enable-leader-election
Expand Down
3 changes: 1 addition & 2 deletions helm-chart/values-plus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ controller:
serviceAccountName: nginx-ingress
reportIngressStatus:
enable: false
externalAddress: fake-address
externalService: true
externalService: "external-svc"
enableLeaderElection: true
rbac:
create: true
Expand Down
3 changes: 1 addition & 2 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ controller:
serviceAccountName: nginx-ingress
reportIngressStatus:
enable: false
externalAddress: fake-address
externalService: true
externalService: "external-svc"
enableLeaderElection: true
rbac:
create: true

0 comments on commit 85749e4

Please sign in to comment.