mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-24 22:21:26 +00:00
documentation
This commit is contained in:
parent
a9a483b546
commit
6d133a5f96
@ -3,3 +3,28 @@
|
||||
Ansible playbooks, roles, modules, etc will come here. Documentation to come soon.
|
||||
|
||||
Each playbook should have comments or a name descripter that explains what the playbook does or how it is used. If not available, README-... files can be used in place.
|
||||
|
||||
## Structure
|
||||
|
||||
```
|
||||
files -> As the name implies, non-templated files go here
|
||||
group_vars -> Group Variables go here if they are not fulfilled in an inventory
|
||||
host_vars -> Host variables go here
|
||||
inventory -> All static inventories go here
|
||||
roles -> Custom roles can go here
|
||||
tasks -> Common tasks come here
|
||||
templates -> Templates go here
|
||||
vars -> Global variables that are called with vars_files go here. This
|
||||
is mainly for init and encpass.yml
|
||||
```
|
||||
|
||||
## Current Playbook Naming
|
||||
|
||||
```
|
||||
init-* -> Starting infrastructure playbooks that run solo or import other
|
||||
playbooks that start with import-
|
||||
import -> Playbooks that should be imported from the top level playbooks
|
||||
role-* -> These playbooks call roles specifically for infrastructure tasks
|
||||
adhoc -> These playbooks are one-off playbooks that can be used on the CLI or
|
||||
in AWX
|
||||
```
|
||||
|
22
ansible/init-rocky-ipa-internal-dns.yml
Normal file
22
ansible/init-rocky-ipa-internal-dns.yml
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
# This builds out the initial users and groups for the rocky linux infra
|
||||
- name: Create our initial users
|
||||
hosts: ipaserver
|
||||
become: false
|
||||
vars_files:
|
||||
- vars/encpass.yml
|
||||
|
||||
tasks:
|
||||
- name: "Checking for user variables"
|
||||
assert:
|
||||
that:
|
||||
- ipaadmin_password | mandatory
|
||||
success_msg: "Required variables provided"
|
||||
fail_msg: "We are missing ipa admin password"
|
||||
|
||||
- name: "Start users"
|
||||
ipadnszone:
|
||||
ipaadmin_password: '{{ ipaadmin_password }}'
|
||||
name: '{{ internal_domain }}'
|
||||
with_items:
|
||||
- dev.rockylinux.org
|
2
ansible/requirements.yml
Normal file
2
ansible/requirements.yml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
- src: freeipa.ansible_freeipa
|
Loading…
Reference in New Issue
Block a user