scaffold(public_dns): empty role structure
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
6f5c7b2bfb
commit
70c302d7e5
8 changed files with 56 additions and 0 deletions
3
roles/public_dns/README.md
Normal file
3
roles/public_dns/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# public_dns
|
||||
|
||||
Role description here.
|
||||
1
roles/public_dns/defaults/main.yml
Normal file
1
roles/public_dns/defaults/main.yml
Normal file
|
|
@ -0,0 +1 @@
|
|||
---
|
||||
1
roles/public_dns/handlers/main.yml
Normal file
1
roles/public_dns/handlers/main.yml
Normal file
|
|
@ -0,0 +1 @@
|
|||
---
|
||||
1
roles/public_dns/meta/main.yml
Normal file
1
roles/public_dns/meta/main.yml
Normal file
|
|
@ -0,0 +1 @@
|
|||
---
|
||||
7
roles/public_dns/molecule/default/converge.yml
Normal file
7
roles/public_dns/molecule/default/converge.yml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
- name: Converge
|
||||
hosts: all
|
||||
gather_facts: true
|
||||
|
||||
roles:
|
||||
- role: public_dns
|
||||
31
roles/public_dns/molecule/default/molecule.yml
Normal file
31
roles/public_dns/molecule/default/molecule.yml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
dependency:
|
||||
name: galaxy
|
||||
options:
|
||||
requirements-file: ../../requirements.yml
|
||||
|
||||
driver:
|
||||
name: docker
|
||||
|
||||
platforms:
|
||||
- name: instance
|
||||
# Project-owned image built from .docker/molecule-debian13/Dockerfile
|
||||
# and hosted in the Forgejo container registry.
|
||||
# Build/push with: make molecule-image / make molecule-image-push
|
||||
image: forgejo.nyumbani.baobab.band/sjat/molecule-debian13:latest
|
||||
pre_build_image: true
|
||||
privileged: true # required for systemd
|
||||
cgroupns_mode: host
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||
command: /lib/systemd/systemd
|
||||
|
||||
provisioner:
|
||||
name: ansible
|
||||
inventory:
|
||||
host_vars:
|
||||
instance:
|
||||
ansible_user: root
|
||||
|
||||
verifier:
|
||||
name: ansible
|
||||
11
roles/public_dns/molecule/default/verify.yml
Normal file
11
roles/public_dns/molecule/default/verify.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
- name: Verify
|
||||
hosts: all
|
||||
gather_facts: true
|
||||
|
||||
tasks:
|
||||
- name: Add verification tasks here
|
||||
ansible.builtin.assert:
|
||||
that: true
|
||||
msg: "Replace this with real assertions"
|
||||
tags: [verify]
|
||||
1
roles/public_dns/tasks/main.yml
Normal file
1
roles/public_dns/tasks/main.yml
Normal file
|
|
@ -0,0 +1 @@
|
|||
---
|
||||
Loading…
Add table
Reference in a new issue