Skip to content

Commit

Permalink
capvcd load balancer annotation (#439)
Browse files Browse the repository at this point in the history
* capvcd load balancer annotation

* add to internal lb
  • Loading branch information
vxav committed Mar 28, 2023
1 parent c03a5b5 commit 20cbebf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project's packages adheres to [Semantic Versioning](http://semver.org/s

## [Unreleased]

### Added

- Set load balancer annotation cloud-director (capvcd) clusters.

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ metadata:
{{- else if eq .Values.provider "azure" }}
service.beta.kubernetes.io/azure-load-balancer-mixed-protocols: "true"
service.beta.kubernetes.io/azure-load-balancer-internal: "true"
{{- else if eq .Values.provider "cloud-director" }}
service.beta.kubernetes.io/vcloud-avi-ssl-no-termination: "true"
{{- end }}
{{- end }}
labels:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ metadata:
{{- if not .Values.controller.service.public }}
service.beta.kubernetes.io/azure-load-balancer-internal: "true"
{{- end }}
{{- else if eq .Values.provider "cloud-director" }}
service.beta.kubernetes.io/vcloud-avi-ssl-no-termination: "true"
{{- end }}
{{- end }}
labels:
Expand Down
2 changes: 1 addition & 1 deletion helm/nginx-ingress-controller-app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ image:
# This value is set automatically. Do not overwrite this value.
baseDomain: ""

# provider (aws|capa|azure|kvm)
# provider (aws|capa|azure|kvm|cloud-director)
# The provider that the cluster is running on.
# This value is set automatically. Do not overwrite this value.
provider: aws

0 comments on commit 20cbebf

Please sign in to comment.