Skip to content
Snippets Groups Projects
Unverified Commit 050fde63 authored by mKlaris's avatar mKlaris Committed by GitHub
Browse files

Add enableServicesElection env variable. (#9595)

parent 4d3104b3
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment