Add enableServicesElection env variable. (#9595)

pull/9632/head
mKlaris 2023-01-03 03:35:33 +01:00 committed by GitHub
parent 4d3104b334
commit 050fde6327
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -39,6 +39,12 @@ kube_vip_services_enabled: false
[additional manual steps](https://kube-vip.io/docs/usage/cloud-provider/)
are needed.
If using [local traffic policy](https://kube-vip.io/docs/usage/kubernetes-services/#external-traffic-policy-kube-vip-v050):
```yaml
kube_vip_enableServicesElection: true
```
If using [ARP mode](https://kube-vip.io/docs/installation/static/#arp) :
```yaml

View File

@ -86,6 +86,7 @@ kube_vip_bgp_peerpass:
kube_vip_bgp_peeras: 65000
kube_vip_bgppeers:
kube_vip_address:
kube_vip_enableServicesElection: false
# Requests for load balancer app
loadbalancer_apiserver_memory_requests: 32M

View File

@ -68,6 +68,10 @@ spec:
{% endif %}
- name: address
value: {{ kube_vip_address | to_json }}
{% if kube_vip_enableServicesElection %}
- name: enableServicesElection
value: "true"
{% endif %}
image: {{ kube_vip_image_repo }}:{{ kube_vip_image_tag }}
imagePullPolicy: {{ k8s_image_pull_policy }}
name: kube-vip