mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 06:46:36 +01:00
Ansible scripts to install OCP on oVirt/RHV with a step by step process documented in the docs. Signed-off-by: Roberto Ciatti <rciatti@redhat.com>
18 lines
352 B
YAML
18 lines
352 B
YAML
---
|
|
- hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- import_tasks: common-auth.yml
|
|
|
|
- name: Remove bootstrap VM
|
|
ovirt_vm:
|
|
auth: "{{ ovirt_auth }}"
|
|
cluster: "{{ item.profile.cluster }}"
|
|
name: "{{ item.name }}"
|
|
state: absent
|
|
with_items:
|
|
- "{{ vms }}"
|
|
when: item.ocp_type == 'bootstrap'
|