Skip to content

Latest commit

 

History

History
93 lines (67 loc) · 2.8 KB

README.md

File metadata and controls

93 lines (67 loc) · 2.8 KB

Build Status

ovirt-ansible

Ansible roles for oVirt deployment.

Roles in this repository can configure nodes used as oVirt deployment members.

Host groups

Each role has documentation, where you can find Target systems section. This section specifies what kind of node you can apply relevant role.

engine

This host group is meant for node where the oVirt Engine management is supposed to be deployed.

hypervisors

This host groups are meant for all nodes which are supposed to be used as hypervisors of oVirt Engine.

Note that none of the roles in this repository adds these machines into oVirt Engine.

database

This host group is meant for node on which the database is supposed to be deployed.

dwh

This host group is meant for node on which the DWH is supposed to be deployed.

Implemented roles

Example

Minimal playbook example

---
- hosts: engine
  roles:
    - role: ovirt-common
    - role: ovirt-engine-install-packages
    - role: ovirt-engine-setup

- hosts: hypervisors
  roles:
    - role: ovirt-common

Minimal inventory example

[all:vars]
ovirt_engine_type=ovirt-engine
ovirt_engine_version=4.1
# Make sure that link to release rpm is working!!!
ovirt_rpm_repo: "http://resources.ovirt.org/pub/yum-repo/ovirt-release-master.rpm"
ovirt_engine_organization=of.ovirt.engine.com
ovirt_engine_admin_password=secret

[engine]
fqdn.of.ovirt.engine.com

[hypervisors]
fqdn.of.ovirt.hypervisor1.com
fqdn.of.ovirt.hypervisor2.com