k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
28 lines
1.0 KiB
---
|
|
- name: gather os specific variables
|
|
include_vars: "{{ item }}"
|
|
with_first_found:
|
|
- files:
|
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_version|lower|replace('/', '_') }}.yml"
|
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_release }}.yml"
|
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_major_version|lower|replace('/', '_') }}.yml"
|
|
- "{{ ansible_distribution|lower }}.yml"
|
|
- "{{ ansible_os_family|lower }}.yml"
|
|
- defaults.yml
|
|
paths:
|
|
- ../vars
|
|
skip: true
|
|
|
|
- name: User | Create User Group
|
|
group: name={{item.group|default(item.name)}} system={{item.system|default(omit)}}
|
|
with_items: "{{ addusers }}"
|
|
|
|
- name: User | Create User
|
|
user:
|
|
comment: "{{item.comment|default(omit)}}"
|
|
createhome: "{{item.create_home|default(omit)}}"
|
|
group: "{{item.group|default(item.name)}}"
|
|
home: "{{item.home|default(omit)}}"
|
|
name: "{{item.name}}"
|
|
system: "{{item.system|default(omit)}}"
|
|
with_items: "{{ addusers }}"
|