|
|
|
@@ -1,6 +1,6 @@ |
|
|
|
--- |
|
|
|
|
|
|
|
- name: Ensure heisenbridge image is pulled |
|
|
|
- name: Ensure Heisenbridge image is pulled |
|
|
|
community.docker.docker_image: |
|
|
|
name: "{{ matrix_heisenbridge_docker_image }}" |
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}" |
|
|
|
@@ -11,7 +11,7 @@ |
|
|
|
delay: "{{ devture_playbook_help_container_retries_delay }}" |
|
|
|
until: result is not failed |
|
|
|
|
|
|
|
- name: Ensure heisenbridge paths exist |
|
|
|
- name: Ensure Heisenbridge paths exist |
|
|
|
ansible.builtin.file: |
|
|
|
path: "{{ item }}" |
|
|
|
state: directory |
|
|
|
@@ -21,7 +21,7 @@ |
|
|
|
with_items: |
|
|
|
- "{{ matrix_heisenbridge_base_path }}" |
|
|
|
|
|
|
|
- name: Ensure heisenbridge registration.yaml installed if provided |
|
|
|
- name: Ensure Heisenbridge registration.yaml installed if provided |
|
|
|
ansible.builtin.copy: |
|
|
|
content: "{{ matrix_heisenbridge_registration | to_nice_yaml(indent=2, width=999999) }}" |
|
|
|
dest: "{{ matrix_heisenbridge_base_path }}/registration.yaml" |
|
|
|
@@ -29,7 +29,7 @@ |
|
|
|
owner: "{{ matrix_user_username }}" |
|
|
|
group: "{{ matrix_user_groupname }}" |
|
|
|
|
|
|
|
- name: Ensure heisenbridge support files installed |
|
|
|
- name: Ensure Heisenbridge support files installed |
|
|
|
ansible.builtin.template: |
|
|
|
src: "{{ role_path }}/templates/{{ item }}.j2" |
|
|
|
dest: "{{ matrix_heisenbridge_base_path }}/{{ item }}" |
|
|
|
@@ -39,7 +39,7 @@ |
|
|
|
with_items: |
|
|
|
- labels |
|
|
|
|
|
|
|
- name: Ensure heisenbridge container network is created |
|
|
|
- name: Ensure Heisenbridge container network is created |
|
|
|
community.general.docker_network: |
|
|
|
enable_ipv6: "{{ devture_systemd_docker_base_ipv6_enabled }}" |
|
|
|
name: "{{ matrix_heisenbridge_container_network }}" |
|
|
|
|