Seperating the roles of basic infra requirements and docker service requirements into seperate roles
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 6s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 15s

With this we have a working proof of concept for a proper simple docker host
This commit is contained in:
2025-04-16 18:25:24 -07:00
parent 5f10976264
commit 3521b840ae
6 changed files with 53 additions and 24 deletions

View File

@@ -3,5 +3,19 @@
remote_user: nigel
tasks:
- name: Setup basic role on nigel
tags:
- setup
ansible.builtin.include_role:
name: local-server-head
name: local-server-head
apply:
tags:
- setup
- name: Setup Docker services on nigel
tags:
- services
ansible.builtin.include_role:
name: services
apply:
become: true
tags:
- services