This commit is contained in:
11
ansible/roles/bootstrap/tasks/dependencies.yml
Normal file
11
ansible/roles/bootstrap/tasks/dependencies.yml
Normal file
@ -0,0 +1,11 @@
|
||||
- name: Create folder structure
|
||||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
loop:
|
||||
- /opt/x
|
||||
|
||||
- name: Install ansible-galaxy collection
|
||||
ansible.builtin.shell:
|
||||
cmd: "ansible-galaxy collection install {{ item }}"
|
||||
loop: "{{ dependencies.ansible_galaxy_collections }}"
|
2
ansible/roles/bootstrap/tasks/main.yml
Normal file
2
ansible/roles/bootstrap/tasks/main.yml
Normal file
@ -0,0 +1,2 @@
|
||||
- name: XYZ
|
||||
import_tasks: foo.yml
|
@ -2,6 +2,7 @@
|
||||
ansible.builtin.file:
|
||||
path: /opt/firstboot
|
||||
state: directory
|
||||
|
||||
- name: Create firstboot script file
|
||||
ansible.builtin.template:
|
||||
src: firstboot.j2
|
||||
@ -9,11 +10,13 @@
|
||||
owner: root
|
||||
group: root
|
||||
mode: o+x
|
||||
|
||||
- name: Create @reboot crontab job
|
||||
ansible.builtin.cron:
|
||||
name: firstboot
|
||||
special_time: reboot
|
||||
job: "/opt/firstboot/firstboot.sh"
|
||||
|
||||
- name: Copy payload folder
|
||||
ansible.builtin.copy:
|
||||
src: ansible_payload/
|
||||
@ -21,6 +24,3 @@
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0644'
|
||||
- name: Install ansible-galaxy collection
|
||||
ansible.builtin.shell:
|
||||
cmd: ansible-galaxy collection install community.general
|
||||
|
6
ansible/roles/metacluster/tasks/k3s.yml
Normal file
6
ansible/roles/metacluster/tasks/k3s.yml
Normal file
@ -0,0 +1,6 @@
|
||||
- name: Create folder structure
|
||||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
loop:
|
||||
- /opt/x
|
2
ansible/roles/metacluster/tasks/main.yml
Normal file
2
ansible/roles/metacluster/tasks/main.yml
Normal file
@ -0,0 +1,2 @@
|
||||
- name: XYZ
|
||||
import_tasks: foo.yml
|
Reference in New Issue
Block a user