Merge pull request #6127 from naioja/aj_aks_internal_lb
AKS example of adding an internal loadbalancer
This commit is contained in:
commit
2ee89f592a
1 changed files with 11 additions and 0 deletions
|
@ -188,6 +188,17 @@ controller:
|
||||||
# Any other annotation can be declared here.
|
# Any other annotation can be declared here.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Example for Azure:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
controller:
|
||||||
|
service:
|
||||||
|
annotations:
|
||||||
|
# Create internal LB
|
||||||
|
service.beta.kubernetes.io/azure-load-balancer-internal: "true"
|
||||||
|
# Any other annotation can be declared here.
|
||||||
|
```
|
||||||
|
|
||||||
An use case for this scenario is having a split-view DNS setup where the public zone CNAME records point to the external balancer URL while the private zone CNAME records point to the internal balancer URL. This way, you only need one ingress kubernetes object.
|
An use case for this scenario is having a split-view DNS setup where the public zone CNAME records point to the external balancer URL while the private zone CNAME records point to the internal balancer URL. This way, you only need one ingress kubernetes object.
|
||||||
|
|
||||||
### Ingress Admission Webhooks
|
### Ingress Admission Webhooks
|
||||||
|
|
Loading…
Reference in a new issue