Install OpenNebula

This commit is contained in:
Khue Doan 2020-10-03 13:45:12 +07:00
parent 1cc04a791e
commit ea0f022d1e
2 changed files with 14 additions and 8 deletions

View File

@ -1,9 +1,10 @@
---
opennebula_packages:
- opennebula
- opennebula-common
- opennebula-flow
- opennebula-gate
- opennebula-node-lxd
- opennebula-sunstone
- opennebula-tools
- opennebula # Command Line Interface
- opennebula-flow # OneFlow manages services and elasticity
- opennebula-gate # OneGate server that enables communication between VMs and OpenNebula
- opennebula-node-firecracker # Dependencies and configurations for Firecracker hypervisor node
- opennebula-node-kvm # Dependencies and configurations for KVM hypervisor node
- opennebula-rubygems # Bundled Ruby gem dependencies
- opennebula-server # OpenNebula Daemon and Scheduler
- opennebula-sunstone # The GUI and the EC2 API

View File

@ -8,8 +8,13 @@
gpgcheck: yes
repo_gpgcheck: yes
- name: Enable EPEL repository
yum:
name: epel-release
state: present
- name: Install OpenNebula
package:
yum:
name: "{{ opennebula_packages }}"
state: present