Rename host groups to host/instance

This commit is contained in:
Marty Oehme 2025-07-14 11:21:54 +02:00
parent 71244751c7
commit b54d14c98e
Signed by: Marty
GPG key ID: 4E535BC19C61886E
2 changed files with 7 additions and 3 deletions

View file

@ -1 +1,5 @@
[host_system]
bob ansible_ssh_private_key_file=~/.ssh/keys/bob bob ansible_ssh_private_key_file=~/.ssh/keys/bob
[instance_system]
ansibletest ansible_connection=docker

View file

@ -1,6 +1,6 @@
--- ---
- name: Prepare incus server host - name: Prepare incus server host
hosts: incus_server hosts: host_system
tasks: tasks:
- name: Prepare system - name: Prepare system
ansible.builtin.import_role: ansible.builtin.import_role:
@ -15,7 +15,7 @@
# ansible-galaxy install geerlingguy.docker # ansible-galaxy install geerlingguy.docker
- name: Install docker - name: Install docker
hosts: docker_instance hosts: instance_system
tasks: tasks:
- name: Install docker and docker compose - name: Install docker and docker compose
ansible.builtin.import_role: ansible.builtin.import_role:
@ -23,7 +23,7 @@
tags: docker tags: docker
- name: Prepare all docker hosted containers - name: Prepare all docker hosted containers
hosts: docker_instance hosts: instance_system
tasks: tasks:
- name: Set up Arr stack - name: Set up Arr stack
ansible.builtin.import_role: ansible.builtin.import_role: