forked from RedHatOfficial/ocp4-vsphere-upi-automation
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdhcp_pxe.yml
executable file
·43 lines (43 loc) · 1.21 KB
/
dhcp_pxe.yml
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
38
39
40
41
42
43
---
- hosts: all
gather_facts: False
tasks:
- name: Set the cache of all the download links
import_role:
name: cache
- hosts: localhost
gather_facts: True
environment:
PATH: "{{ playbook_dir }}/bin:{{ ansible_env.PATH }}"
tasks:
- name: Run all the common tasks
import_role:
name: common
- hosts: webservers
gather_facts: False
environment:
PATH: "{{ playbook_dir }}/bin:{{ ansible_env.PATH }}"
tasks:
- name: Copy over generated ignition files to webserver
import_role:
name: webserver
tasks_from: copy_ign_files
- name: Download Openshift installer files needed for PXE boot
import_role:
name: webserver
tasks_from: download_pxe_installer_files
- hosts: localhost
gather_facts: False
environment:
PATH: "{{ playbook_dir }}/bin:{{ ansible_env.PATH }}"
GOVC_USERNAME: "{{ vcenter.admin_username }}"
GOVC_PASSWORD: "{{ vcenter.admin_password }}"
GOVC_URL: "https://{{ vcenter.ip }}"
GOVC_INSECURE: 1
tasks:
- name: Run the vmware role to setup vCenter folder
import_role:
name: vmware
- name: Run steps specific to DHCP and PXE boot
import_role:
name: dhcp_pxe