|
1 | 1 | ---
|
2 | 2 |
|
3 |
| -- name: Ensure heisenbridge image is pulled |
| 3 | +- name: Ensure Heisenbridge image is pulled |
4 | 4 | community.docker.docker_image:
|
5 | 5 | name: "{{ matrix_heisenbridge_docker_image }}"
|
6 | 6 | source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
|
11 | 11 | delay: "{{ devture_playbook_help_container_retries_delay }}"
|
12 | 12 | until: result is not failed
|
13 | 13 |
|
14 |
| -- name: Ensure heisenbridge paths exist |
| 14 | +- name: Ensure Heisenbridge paths exist |
15 | 15 | ansible.builtin.file:
|
16 | 16 | path: "{{ item }}"
|
17 | 17 | state: directory
|
|
21 | 21 | with_items:
|
22 | 22 | - "{{ matrix_heisenbridge_base_path }}"
|
23 | 23 |
|
24 |
| -- name: Ensure heisenbridge registration.yaml installed if provided |
| 24 | +- name: Ensure Heisenbridge registration.yaml installed if provided |
25 | 25 | ansible.builtin.copy:
|
26 | 26 | content: "{{ matrix_heisenbridge_registration | to_nice_yaml(indent=2, width=999999) }}"
|
27 | 27 | dest: "{{ matrix_heisenbridge_base_path }}/registration.yaml"
|
28 | 28 | mode: 0644
|
29 | 29 | owner: "{{ matrix_user_username }}"
|
30 | 30 | group: "{{ matrix_user_groupname }}"
|
31 | 31 |
|
32 |
| -- name: Ensure heisenbridge support files installed |
| 32 | +- name: Ensure Heisenbridge support files installed |
33 | 33 | ansible.builtin.template:
|
34 | 34 | src: "{{ role_path }}/templates/{{ item }}.j2"
|
35 | 35 | dest: "{{ matrix_heisenbridge_base_path }}/{{ item }}"
|
|
39 | 39 | with_items:
|
40 | 40 | - labels
|
41 | 41 |
|
42 |
| -- name: Ensure heisenbridge container network is created |
| 42 | +- name: Ensure Heisenbridge container network is created |
43 | 43 | community.general.docker_network:
|
44 | 44 | enable_ipv6: "{{ devture_systemd_docker_base_ipv6_enabled }}"
|
45 | 45 | name: "{{ matrix_heisenbridge_container_network }}"
|
|
0 commit comments