|
1 | 1 | --- |
2 | 2 | # TODO This phase fails once |
3 | | -- name: Prepare IDM server |
| 3 | + |
| 4 | +- name: Prepare IDM |
4 | 5 | hosts: |
5 | 6 | - idm.osgiliath.test |
6 | 7 | tasks: |
|
14 | 15 | secure_logs: False |
15 | 16 | preferred_nic: "eth1" |
16 | 17 | idm_preferred_nic: "eth1" |
17 | | - master_preferred_nic: "eth1" |
18 | 18 | company_domain: osgiliath.test |
19 | 19 | company_realm_password: '123ADMin' |
20 | 20 | company_ad_password: '123ADmPass' |
21 | | - - import_role: |
| 21 | + - include_role: |
| 22 | + name: tcharl.ansible_nameserver |
| 23 | + vars: |
| 24 | + standalone_role: False |
| 25 | + secure_logs: False |
| 26 | + preferred_nic: "eth1" |
| 27 | + company_domain: osgiliath.test |
| 28 | + idm_preferred_nic: "eth1" |
| 29 | + company_realm_password: '123ADMin' |
| 30 | + company_ad_password: '123ADmPass' |
| 31 | +- name: Prepare IPA clients |
| 32 | + hosts: |
| 33 | + - master.osgiliath.test |
| 34 | + - node1.osgiliath.test |
| 35 | + tasks: |
| 36 | + - name: "install fedora ansible prerequisites" |
| 37 | + ansible.builtin.raw: dnf install -y python3 python3-libdnf5 |
| 38 | + changed_when: false |
| 39 | + become: true |
| 40 | + - include_role: |
| 41 | + name: tcharl.ansible_securehost |
| 42 | + vars: |
| 43 | + standalone_role: False |
| 44 | + secure_logs: False |
| 45 | + preferred_nic: "eth1" |
| 46 | + company_domain: osgiliath.test |
| 47 | + idm_preferred_nic: "eth1" |
| 48 | + company_realm_password: '123ADMin' |
| 49 | + company_ad_password: '123ADmPass' |
| 50 | + - include_role: |
| 51 | + name: tcharl.ansible_nameserver |
| 52 | + vars: |
| 53 | + standalone_role: False |
| 54 | + secure_logs: False |
| 55 | + preferred_nic: "eth1" |
| 56 | + company_domain: osgiliath.test |
| 57 | + idm_preferred_nic: "eth1" |
| 58 | + company_realm_password: '123ADMin' |
| 59 | + company_ad_password: '123ADmPass' |
| 60 | +- name: Prepare NFS server on Master |
| 61 | + hosts: |
| 62 | + - master.osgiliath.test |
| 63 | + tasks: |
| 64 | + - include_role: |
22 | 65 | name: tcharl.nfs_server |
23 | | -- name: Prepare |
| 66 | + vars: |
| 67 | + standalone_role: False |
| 68 | + secure_logs: False |
| 69 | + preferred_nic: "eth1" |
| 70 | + company_domain: osgiliath.test |
| 71 | + idm_preferred_nic: "eth1" |
| 72 | + company_realm_password: '123ADMin' |
| 73 | + company_ad_password: '123ADmPass' |
| 74 | +- name: Prepare NFS client on Node |
| 75 | + hosts: |
| 76 | + - node1.osgiliath.test |
| 77 | + tasks: |
| 78 | + - include_role: |
| 79 | + name: tcharl.nfs_client |
| 80 | + vars: |
| 81 | + standalone_role: False |
| 82 | + secure_logs: False |
| 83 | + preferred_nic: "eth1" |
| 84 | + company_domain: osgiliath.test |
| 85 | + idm_preferred_nic: "eth1" |
| 86 | + company_realm_password: '123ADMin' |
| 87 | + company_ad_password: '123ADmPass' |
| 88 | +- name: Prepare Kubernetes |
24 | 89 | hosts: |
25 | 90 | - master.osgiliath.test |
26 | 91 | - node1.osgiliath.test |
|
30 | 95 | changed_when: false |
31 | 96 | become: true |
32 | 97 | - include_role: |
33 | | - name: tcharl.kube_certmanager |
34 | | - tasks_from: requirements.yml |
| 98 | + name: tcharl.ansible_orchestration |
35 | 99 | vars: |
| 100 | + standalone_role: False |
36 | 101 | secure_logs: False |
37 | 102 | preferred_nic: "eth1" |
| 103 | + company_domain: osgiliath.test |
38 | 104 | idm_preferred_nic: "eth1" |
39 | 105 | master_preferred_nic: "eth1" |
| 106 | + company_realm_password: '123ADMin' |
| 107 | + company_ad_password: '123ADmPass' |
| 108 | + - include_role: |
| 109 | + name: tcharl.ansible_orchestration_cli |
| 110 | + vars: |
| 111 | + standalone_role: False |
| 112 | + secure_logs: False |
| 113 | + preferred_nic: "eth1" |
40 | 114 | company_domain: osgiliath.test |
| 115 | + idm_preferred_nic: "eth1" |
| 116 | + master_preferred_nic: "eth1" |
41 | 117 | company_realm_password: '123ADMin' |
42 | 118 | company_ad_password: '123ADmPass' |
0 commit comments