1+ ---
2+
3+ - name : Validate the CDP Public Cloud environment configuration
4+ ansible.builtin.import_role :
5+ name : cloudera.exe.platform
6+ tasks_from : validate.yml
7+ environment : " {{ env_vars }}"
8+ tags : always
9+
10+ - name : Install the CDP Public Cloud environment
11+ block :
12+ - name : Initialize the CDP Public Cloud environment for setup
13+ ansible.builtin.import_role :
14+ name : cloudera.exe.platform
15+ tasks_from : initialize_setup.yml
16+ environment : " {{ env_vars }}"
17+
18+ - name : Set up the CDP Public Cloud environment
19+ ansible.builtin.import_role :
20+ name : cloudera.exe.platform
21+ tasks_from : setup.yml
22+ environment : " {{ env_vars }}"
23+ tags : setup
24+
25+ - name : Teardown the CDP Public Cloud environment
26+ block :
27+ - name : Initialize the CDP Public Cloud environment for teardown
28+ ansible.builtin.import_role :
29+ name : cloudera.exe.platform
30+ tasks_from : initialize_teardown.yml
31+ environment : " {{ env_vars }}"
32+
33+ - name : Tear down the CDP Public Cloud environment
34+ ansible.builtin.import_role :
35+ name : cloudera.exe.platform
36+ tasks_from : teardown.yml
37+ environment : " {{ env_vars }}"
38+ tags : teardown
0 commit comments