Skip to content

Commit 002d7e9

Browse files
authored
Added a doc line to the missing helm value service.internal.loadBalancerIP (#9406)
* Update README.md #9403 Add documentation for controller.service.internal.loadBalancerIP in Helm chart * Update README.md removed a duplicated row in the helm chart values * #9403 added a doc to the internal loadBalancerIP removed a comment from an already supported helm value and added a doc line * #9403 Reverted a manual added line Removed a manual added line in favour of helm doc * #9403 re-generated the README with the last doc line added to the value.yaml * #9403 removed trailing spaces * removed trail spaces
1 parent ef6163a commit 002d7e9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

charts/ingress-nginx/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ As of version `1.26.0` of this chart, by simply not providing any clusterIP valu
408408
| controller.service.externalIPs | list | `[]` | List of IP addresses at which the controller services are available # Ref: https://kubernetes.io/docs/concepts/services-networking/service/#external-ips # |
409409
| controller.service.internal.annotations | object | `{}` | Annotations are mandatory for the load balancer to come up. Varies with the cloud service. |
410410
| controller.service.internal.enabled | bool | `false` | Enables an additional internal load balancer (besides the external one). |
411+
| controller.service.internal.loadBalancerIP | string | `""` | Used by cloud providers to connect the resulting internal LoadBalancer to a pre-existing static IP. Make sure to add to the service the needed annotation to specify the subnet which the static IP belongs to. For instance, `networking.gke.io/internal-load-balancer-subnet` for GCP and `service.beta.kubernetes.io/aws-load-balancer-subnets` for AWS. |
411412
| controller.service.internal.loadBalancerSourceRanges | list | `[]` | Restrict access For LoadBalancer service. Defaults to 0.0.0.0/0. |
412413
| controller.service.internal.ports | object | `{}` | Custom port mapping for internal service |
413414
| controller.service.internal.targetPorts | object | `{}` | Custom target port mapping for internal service |

charts/ingress-nginx/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,9 @@ controller:
478478
enabled: false
479479
# -- Annotations are mandatory for the load balancer to come up. Varies with the cloud service.
480480
annotations: {}
481-
# loadBalancerIP: ""
481+
482+
# -- Used by cloud providers to connect the resulting internal LoadBalancer to a pre-existing static IP. Make sure to add to the service the needed annotation to specify the subnet which the static IP belongs to. For instance, `networking.gke.io/internal-load-balancer-subnet` for GCP and `service.beta.kubernetes.io/aws-load-balancer-subnets` for AWS.
483+
loadBalancerIP: ""
482484

483485
# -- Restrict access For LoadBalancer service. Defaults to 0.0.0.0/0.
484486
loadBalancerSourceRanges: []

0 commit comments

Comments
 (0)