Skip to content
Snippets Groups Projects
Unverified Commit 86d05ac1 authored by Alessio Greggi's avatar Alessio Greggi Committed by GitHub
Browse files

fix: remove condition for user creation (#9125)

This condition blocks the creation of the `etcd` user in certain conditions.
Specifically, when you have a `etcd_deployment_type: kubeadm` and `kube_owner: root`.
Being the `root` user already present on the system, this will not be a problem (due to the idempotency of ansible).
parent bf6fcf63
Branches
Tags
No related merge requests found
......@@ -13,4 +13,4 @@
shell: "{{ user.shell|default(omit) }}"
name: "{{ user.name }}"
system: "{{ user.system|default(omit) }}"
when: kube_owner != "root"
when: user.name != "root"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment