mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-20 06:01:28 -03:30
This allows us to reuse the defaults in other places without putting everything in kubespray-defaults. In that, for kubernetes/control-plane.
10 lines
384 B
YAML
10 lines
384 B
YAML
---
|
|
dependencies:
|
|
- role: adduser
|
|
user: "{{ addusers.etcd }}"
|
|
when: not (ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk", "ClearLinux"] or is_fedora_coreos)
|
|
- role: adduser
|
|
user: "{{ addusers.kube }}"
|
|
when: not (ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk", "ClearLinux"] or is_fedora_coreos)
|
|
- role: etcd_defaults
|