-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild_multiple_ees.yml
More file actions
37 lines (32 loc) · 1.19 KB
/
build_multiple_ees.yml
File metadata and controls
37 lines (32 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
- name: Build multiple EE's
hosts: localhost
connection: local
gather_facts: true
tags: buildee
vars_files:
- "{{ playbook_dir }}/.vault.yml"
tasks:
- name: Include build_ee tasks file
vars:
execution_environments:
- "ansible-automation-platform-24/ee-casc-rhel8-git"
- "ansible-automation-platform-24/ee-casc-rhel8"
- "ansible-automation-platform-24/ee-casc-rhel9-git"
- "ansible-automation-platform-24/ee-casc-rhel9"
- "ansible-automation-platform-25/ee-casc-rhel8-git"
- "ansible-automation-platform-25/ee-casc-rhel8"
- "ansible-automation-platform-25/ee-casc-rhel9-git"
- "ansible-automation-platform-25/ee-casc-rhel9"
- "ansible-automation-platform-26/ee-casc-rhel9-git"
- "ansible-automation-platform-26/ee-casc-rhel9"
- "ansible-automation-platform/ee-proxmox-rhel9"
- "ansible-automation-platform/ee-unifi-rhel9"
- "ee-xorriso-rhel9"
loop: "{{ execution_environments }}"
loop_control:
loop_var: execution_environment
index_var: ee_idx
ansible.builtin.include_tasks:
file: tasks/build_ee.yml
...