mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-17 04:31:24 -03:30
* project: fix ansible-lint name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: ignore jinja template error in names Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: capitalize ansible name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: update notify after name capitalization Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
14 lines
456 B
YAML
14 lines
456 B
YAML
---
|
|
- name: Kube-vip | Check cluster settings for kube-vip
|
|
fail:
|
|
msg: "kube-vip require kube_proxy_strict_arp = true, see https://github.com/kube-vip/kube-vip/blob/main/docs/kubernetes/arp/index.md"
|
|
when:
|
|
- kube_proxy_mode == 'ipvs' and not kube_proxy_strict_arp
|
|
- kube_vip_arp_enabled
|
|
|
|
- name: Kube-vip | Write static pod
|
|
template:
|
|
src: manifests/kube-vip.manifest.j2
|
|
dest: "{{ kube_manifest_dir }}/kube-vip.yml"
|
|
mode: 0640
|