forked from RedHatOfficial/ocp4-vsphere-upi-automation
-
Notifications
You must be signed in to change notification settings - Fork 3
/
dhcp_ova.yml
executable file
·39 lines (39 loc) · 1.07 KB
/
dhcp_ova.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
---
- 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
- 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 the use of an OVA file
import_role:
name: dhcp_ova