First commit.

This commit is contained in:
Andrea Dell'Amico 2022-01-27 21:19:50 +01:00
parent 685db926ca
commit eeba70ee1a
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
4 changed files with 170 additions and 53 deletions

View File

@ -1,31 +1,73 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
A role that installs a basic KVM hypervisor.
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
The most important variables are listed below:
``` yaml
virtualization_pkg_state: present
virtualization_packages:
- qemu-kvm
- libvirt
- bridge-utils
- virt-install
- cloud-utils
- libguestfs-tools
virtualization_centos6_packages:
- python-virtinst
virtualization_centos_netinst_url: "http://mi.mirror.garr.it/mirrors/CentOS/7/os/x86_64/"
virtualization_os_boot_dir: /var/lib/libvirt/boot
virtualization_os_boot_images:
- "http://centos.mirror.garr.it/centos/7.7.1908/isos/x86_64/CentOS-7-x86_64-Minimal-1908.iso"
- "http://releases.ubuntu.com/bionic/ubuntu-18.04.3-live-server-amd64.iso"
- "https://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud.qcow2"
- "https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img"
- "https://cloud-images.ubuntu.com/bionic/current/focal-server-cloudimg-amd64.img"
virtualization_activate_forwarding: True
virtualization_disable_nfs: True
virtualization_nfs_services_to_be_disabled:
- nfslock
- rpcbind
- gssproxy
virtualization_disable_iscsi: True
virtualization_iscsi_services_to_be_disabled:
- iprupdate
- iprinit
- iprdump
- iscsid
# Set this to false if ganeti is used for VM management
virtualization_enable_libvirtd: True
virtualization_services_to_be_enabled:
- libvirtd
virtualization_sysctl_tuning:
- { name: 'net.ipv4.ip_forward', value: '1', state: 'present' }
virtualization_kvm_create_lvm_pv: False
virtualization_kvm_create_lvm_vg: False
virtualization_kvm_lvm_pv:
- /dev/fake_disk_1
virtualization_kvm_lvm_vg: vgxen
# Disable tuned on the host
centos_tuned_enabled: False
```
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: username.rolename, x: 42 }
None
License
-------
@ -35,4 +77,4 @@ EUPL-1.2
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).
Andrea Dell'Amico, <andrea.dellamico@isti.cnr.it>

View File

@ -1,2 +1,53 @@
---
# defaults file for ansible-role-template
virtualization_pkg_state: present
virtualization_packages:
- qemu-kvm
- libvirt
- bridge-utils
- virt-install
- cloud-utils
- libguestfs-tools
virtualization_centos6_packages:
- python-virtinst
virtualization_centos_netinst_url: "http://mi.mirror.garr.it/mirrors/CentOS/7/os/x86_64/"
virtualization_os_boot_dir: /var/lib/libvirt/boot
virtualization_os_boot_images:
- "http://centos.mirror.garr.it/centos/7.7.1908/isos/x86_64/CentOS-7-x86_64-Minimal-1908.iso"
- "http://releases.ubuntu.com/bionic/ubuntu-18.04.3-live-server-amd64.iso"
- "https://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud.qcow2"
- "https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img"
virtualization_activate_forwarding: True
virtualization_disable_nfs: True
virtualization_nfs_services_to_be_disabled:
- nfslock
- rpcbind
- gssproxy
virtualization_disable_iscsi: True
virtualization_iscsi_services_to_be_disabled:
- iprupdate
- iprinit
- iprdump
- iscsid
# Set this to false if ganeti is used for VM management
virtualization_enable_libvirtd: True
virtualization_services_to_be_enabled:
- libvirtd
virtualization_sysctl_tuning:
- { name: 'net.ipv4.ip_forward', value: '1', state: 'present' }
virtualization_kvm_create_lvm_pv: False
virtualization_kvm_create_lvm_vg: False
virtualization_kvm_lvm_pv:
- /dev/fake_disk_1
virtualization_kvm_lvm_vg: vgxen
# Disable tuned on the host
centos_tuned_enabled: False

View File

@ -1,46 +1,24 @@
galaxy_info:
author: your name
description: your description
company: your company (optional)
author: Andrea Dell'Amico
description: Systems Architect
company: ISTI-CNR
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
issue_tracker_url: https://support.d4science.org/projects/automatic-provisioning/issues
issue_tracker_url: https://support.d4science.org/projects/d4science-operation/issues
license: EUPL-1.2
license: EUPL 1.2+
min_ansible_version: 2.8
# If this a Container Enabled role, provide the minimum Ansible Container version.
# min_ansible_container_version:
# Optionally specify the branch Galaxy will use when accessing the GitHub
# repo for this role. During role install, if no tags are available,
# Galaxy will use this branch. During import Galaxy will access files on
# this branch. If Travis integration is configured, only notifications for this
# branch will be accepted. Otherwise, in all cases, the repo's default branch
# (usually master) will be used.
#github_branch:
#
# Provide a list of supported platforms, and for each platform a list of versions.
# If you don't wish to enumerate all versions for a particular platform, use 'all'.
# To view available platforms and versions (or releases), visit:
# https://galaxy.ansible.com/api/v1/platforms/
#
platforms:
- name: Ubuntu
versions:
- bionic
- name: EL
versions:
- 7
galaxy_tags: []
# List tags for your role here, one per line. A tag is a keyword that describes
# and categorizes the role. Users find roles by searching for tags. Be sure to
# remove the '[]' above, if you add tags to this list.
#
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
# Maximum 20 tags per role.
galaxy_tags:
- kvm
- virtualisation
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.

View File

@ -1,2 +1,48 @@
---
# tasks file for ansible-role-template
- name: Install the virtualization packages
yum: name={{ virtualization_packages }} state={{ virtualization_pkg_state }}
tags: kvm
- name: Enable libvirtd when needed
service: name={{ item }} state=started enabled=yes
with_items: '{{ virtualization_services_to_be_enabled }}'
when: virtualization_enable_libvirtd | bool
tags: [ 'kvm', 'libvirt' ]
- name: Disable nfs
service: name={{ item }} state=stopped enabled=no
with_items: '{{ virtualization_nfs_services_to_be_disabled }}'
when: virtualization_disable_nfs | bool
tags: [ 'kvm', 'nfs' ]
- name: Disable iscsi
service: name={{ item }} state=stopped enabled=no
with_items: '{{ virtualization_iscsi_services_to_be_disabled }}'
when: virtualization_disable_iscsi | bool
tags: [ 'kvm' , 'iscsi' ]
- name: Set some kernel parameters needed by virtualization. IP forwarding for example, if we need NAT
sysctl: name={{ item.name }} state={{ item.state }} value={{ item.value }} sysctl_file=/etc/sysctl.d/90-virtualization.conf reload=yes sysctl_set=yes
with_items: '{{ virtualization_sysctl_tuning }}'
tags: kvm
- name: Collect the ISO boot images
get_url: url="{{ item }}" dest={{ virtualization_os_boot_dir }}/
with_items: '{{ virtualization_os_boot_images }}'
tags: [ 'kvm', 'iso_images' ]
- name: Create the LVM PV
command: pvcreate {{ item }}
with_items: '{{ virtualization_kvm_lvm_pv }}'
when: virtualization_kvm_create_lvm_pv | bool
tags: [ 'kvm', 'lvm_pv' ]
- name: Create the LVM VG to be used by the virtual guests
lvg: vg={{ virtualization_kvm_lvm_vg }} pvs={{ item }}
with_items: '{{ virtualization_kvm_lvm_pv }}'
when: virtualization_kvm_create_lvm_vg | bool
tags: [ 'kvm', 'lvm_vg' ]
- name: Fix the /dev/kvm permissions
file: dest=/dev/kvm owner=root group=kvm mode=0660
tags: kvm