Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit 19699b1

Browse files
fabiendupontnyoxi
authored andcommitted
Squashed most of the changes in a new repository dedicated to transformation host.
1 parent b029d8b commit 19699b1

20 files changed

+585
-673
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.retry

LICENSE

+190-673
Large diffs are not rendered by default.

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# V2V - Transformation Host - Ansible
2+
This repository contains Ansible artefacts used for V2V Transformation Host
3+
4+
## Example inventory
5+
6+
```yaml
7+
all:
8+
vars:
9+
v2v_repo_rpms_name: "v2v-nbdkit-rpms"
10+
v2v_repo_rpms_url: "http://content.example.com/v2v-nbdkit-rpms"
11+
v2v_repo_srpms_name: "v2v-nbdkit-src-rpms"
12+
v2v_repo_srpms_url: "http://content.example.com/v2v-nbdkit-src-rpms"
13+
v2v_vddk_package_name: "VMware-vix-disklib-6.5.2-6195444.x86_64.tar.gz"
14+
v2v_vddk_package_url: "http://content.example.com/VMware-vix-disklib-6.5.2-6195444.x86_64.tar.gz"
15+
hosts:
16+
rhvh01.example.com:
17+
rhvh02.example.com:
18+
```

defaults/main.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
v2v_facts_dir: /etc/ansible/facts.d
3+
v2v_facts_file: vddk.fact
4+
v2v_vddk_override: false
5+
v2v_vddk_install_dir: /opt
6+
v2v_build_dir: /tmp/nbdkit-plugin
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
- name: Check conversion host role
3+
hosts: all
4+
roles:
5+
- role: v2v.conversion-host
6+
role_action: check
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
- name: Disable conversion host role
3+
hosts: all
4+
roles:
5+
- role: v2v.conversion-host
6+
role_action: uninstall
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
- name: Enable conversion host role
3+
hosts: all
4+
roles:
5+
- role: v2v.conversion-host
6+
role_action: install
7+

meta/main.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
galaxy_info:
3+
author: Fabien Dupont, Tomáš Golembiovský
4+
description: Setup oVirt host as conversion host for ManageIQ
5+
company: Red Hat, Inc.
6+
license: Apache License 2.0
7+
min_ansible_version: 2.4
8+
platforms:
9+
- name: EL
10+
versions:
11+
- 7
12+
galaxy_tags: [ovirt, rhv, rhev, virtualization]

tasks/check.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
- name: Stat VDDK library
3+
stat:
4+
path: "{{ v2v_vddk_install_dir }}/vmware-vix-disklib-distrib/lib64/libvixDiskLib.so"
5+
ignore_errors: yes
6+
register: stat_vddk_library
7+
8+
- name: Stat VDDK nbdkit plugin
9+
stat:
10+
path: "/usr/lib64/nbdkit/plugins/nbdkit-vddk-plugin.so"
11+
ignore_errors: yes
12+
register: stat_nbdkit_plugin
13+
14+
- name: Check if VDDK nbdkit plugin works
15+
command: nbdkit --dump-plugin vddk
16+
environment:
17+
LD_LIBRARY_PATH: "{{ v2v_vddk_install_dir }}/vmware-vix-disklib-distrib/lib64"
18+
ignore_errors: yes
19+
register: command_nbdkit_plugin
20+
21+
- name: Set VDDK and nbdkit facts
22+
set_fact:
23+
v2v_vddk_library_installed: "{{ stat_vddk_library.stat.exists }}"
24+
v2v_nbdkit_plugin_installed: "{{ stat_nbdkit_plugin.stat.exists }}"
25+
v2v_nbdkit_plugin_working: "{{ command_nbdkit_plugin.rc == 0 }}"
26+
27+
- name: Print the check result
28+
debug:
29+
msg: "VDDK installed: {{ v2v_vddk_library_installed }}. nbdkit plugin installed: {{ v2v_nbdkit_plugin_installed }}. nbdkit plugin working: {{ v2v_nbdkit_plugin_working }}."
30+
31+
- name: Fail if we are running a check from CloudForms
32+
assert:
33+
msg: "We do a formal check for ManageIQ and it failed"
34+
that:
35+
- v2v_vddk_library_installed
36+
- v2v_nbdkit_plugin_installed
37+
- v2v_nbdkit_plugin_working
38+
when:
39+
- v2v_manageiq_conversion_host_check is defined
40+
- v2v_manageiq_conversion_host_check

tasks/install.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
# ----------------------------- Initial checks -------------------------------
3+
4+
# Check that the required variables are set
5+
- assert:
6+
that: "{{ item }} is defined"
7+
msg: "Variable '{{ item }}' is mandatory to {{ role_action }} VDDK pluging."
8+
with_items:
9+
- v2v_build_dir
10+
- v2v_vddk_install_dir
11+
- v2v_vddk_package_name
12+
13+
# Include the check tasks, to avoid running the installation if not necessary
14+
- include_tasks: check.yml
15+
16+
# If VDDK plugin is already installed and we have not set vddk_override, then skip.
17+
- assert:
18+
msg: "nbdkit is already installed and 'v2v_vddk_override' is not set to true"
19+
that:
20+
- not v2v_nbdkit_plugin_working or v2v_vddk_override
21+
22+
- include_tasks: "repositories-{{ ansible_distribution | lower }}.yml"
23+
24+
- name: Ensure nbdkit package is installed
25+
yum:
26+
name: nbdkit
27+
state: present
28+
29+
- include_tasks: "vddk-install.yml"
30+
- include_tasks: "nbdkit-plugin-vddk-rpm.yml"
31+
32+
- name: Install virt-v2v
33+
yum:
34+
state: present
35+
name: virt-v2v

tasks/main.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
# Check that the operating system is Red Hat Enterprise Linux or CentOS in version 7 and 64 bits.
3+
- assert:
4+
msg: "This role can only be applied to Red Hat Enterprise Linux / CentOS 7 - 64 bits."
5+
that:
6+
- (ansible_distribution == "CentOS" and ansible_distribution_major_version >= "7") or
7+
(ansible_distribution == "RedHat" and ansible_distribution_major_version >= "7")
8+
- ansible_machine == 'x86_64'
9+
10+
# Check that the required variables are set
11+
- assert:
12+
msg: "Variable 'role_action' is mandatory. Aborting."
13+
that: role_action is defined
14+
15+
# Include the tasks corresponding to the role_action
16+
- include_tasks: "{{ role_action }}.yml"
17+

tasks/nbdkit-plugin-vddk-rpm.yml

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
---
2+
# ------------------------- Install build dependencies -------------------------
3+
- name: Register the list of installed packages before building nbdkit plugin
4+
yum:
5+
list: installed
6+
register: pkgs_before_builddeps
7+
8+
- name: Install build dependencies
9+
yum:
10+
state: present
11+
name: "{{ item }}"
12+
with_items:
13+
- gcc
14+
- make
15+
- rpm-build
16+
- yum-utils
17+
- nbdkit-devel
18+
19+
- name: Ensure gnutls-devel is installed when on CentOS
20+
yum:
21+
name: gnutls-devel
22+
state: present
23+
when: ansible_distribution == "CentOS"
24+
25+
- name: Register the list of installed packages after building nbdkit plugin
26+
yum:
27+
list: installed
28+
register: pkgs_after_builddeps
29+
30+
# ------------------ Create the build dir and get the source -------------------
31+
- name: Clean the build directory
32+
file:
33+
path: "{{ v2v_build_dir }}"
34+
state: absent
35+
36+
- name: Create the build directory
37+
file:
38+
path: "{{ v2v_build_dir }}"
39+
state: directory
40+
mode: 0700
41+
42+
- include_tasks: "nbdkit-source-{{ ansible_distribution | lower }}.yml"
43+
44+
# --------------- Adjust the spec file to match the environment ----------------
45+
- name: Locate the spec file
46+
find:
47+
paths: "{{ v2v_build_dir }}"
48+
patterns: "nbdkit-plugin-vddk.spec*"
49+
recurse: yes
50+
use_regex: no
51+
register: vddk_spec
52+
53+
- assert:
54+
msg: Expected one spec file named nbdkit-plugin-vddk.spec
55+
that:
56+
- "vddk_spec.matched == 1"
57+
58+
- name: Give the spec file known name
59+
copy:
60+
src: "{{ vddk_spec.files[0].path }}"
61+
dest: "{{ v2v_build_dir }}/nbdkit-plugin-vddk.spec"
62+
remote_src: true
63+
64+
- name: Patch path to VDDK in spec file
65+
replace:
66+
path: "{{ v2v_build_dir }}/nbdkit-plugin-vddk.spec"
67+
regexp: '^(%global vddkdir) .*$'
68+
replace: "\\1 {{ v2v_vddk_install_dir }}/vmware-vix-disklib-distrib"
69+
backup: yes
70+
71+
# -------------------- Build and install the nbdkit plugin ---------------------
72+
- name: Build RPM
73+
command: >
74+
rpmbuild -ba
75+
--define "_topdir {{ v2v_build_dir|quote }}"
76+
--define "_builddir {{ v2v_build_dir|quote }}"
77+
--define "_rpmdir {{ v2v_build_dir|quote }}"
78+
--define "_sourcedir {{ v2v_build_dir|quote }}"
79+
--define "_specdir {{ v2v_build_dir|quote }}"
80+
--define "_srcrpmdir {{ v2v_build_dir|quote }}"
81+
nbdkit-plugin-vddk.spec
82+
args:
83+
chdir: "{{ v2v_build_dir }}"
84+
creates: x86_64
85+
86+
- name: Find RPM
87+
find:
88+
paths: "{{ v2v_build_dir }}/x86_64"
89+
patterns: "nbdkit-plugin-vddk-[0-9]*.x86_64.rpm"
90+
recurse: no
91+
use_regex: no
92+
register: plugin_rpm
93+
94+
- assert:
95+
msg: More than one RPM were built, expected just one
96+
that:
97+
- "plugin_rpm.matched == 1"
98+
99+
- name: Install built RPM
100+
yum:
101+
name: "{{ plugin_rpm.files[0].path }}"
102+
state: present
103+
104+
# ------------------------- Clean up build environment -------------------------
105+
- name: Clean build directory
106+
file:
107+
state: absent
108+
path: "{{ v2v_build_dir }}/"
109+
110+
- name: Ensure build dependenciess are removed
111+
yum:
112+
name: "{{ item.name }}"
113+
state: absent
114+
with_items: "{{ pkgs_after_builddeps.results | difference(pkgs_before_builddeps.results) }}"

tasks/nbdkit-source-centos.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
- name: Download Makefile file
3+
get_url:
4+
url: "http://git.annexia.org/?p=nbdkit-plugin-vddk.git;a=blob_plain;f=Makefile;hb=HEAD"
5+
dest: "{{ v2v_build_dir }}/Makefile"
6+
mode: 0400
7+
8+
- name: Download spec file
9+
get_url:
10+
url: "http://git.annexia.org/?p=nbdkit-plugin-vddk.git;a=blob_plain;f=nbdkit-plugin-vddk.spec;hb=HEAD"
11+
dest: "{{ v2v_build_dir }}/nbdkit-plugin-vddk.spec"
12+
mode: 0400
13+
14+
- name: Download nbdkit source
15+
command: make check-source
16+
args:
17+
chdir: "{{ v2v_build_dir }}"
18+
creates: x86_64

tasks/nbdkit-source-redhat.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
- name: Download nbdkit SRPM
3+
command: yumdownloader --source nbdkit
4+
args:
5+
chdir: "{{ v2v_build_dir }}"
6+
7+
- name: Identify nbdkit SRPM
8+
find:
9+
paths: "{{ v2v_build_dir }}"
10+
patterns: "nbdkit-[0-9]*.src.rpm"
11+
recurse: no
12+
use_regex: no
13+
register: nbdkit_srpm
14+
15+
- name: Extract nbdkit SRPM
16+
command: >
17+
rpm --install
18+
--define "_topdir {{ v2v_build_dir|quote }}"
19+
--define "_sourcedir {{ v2v_build_dir|quote }}"
20+
--define "_specdir {{ v2v_build_dir|quote }}"
21+
"{{ nbdkit_srpm.files[0].path }}"
22+
args:
23+
chdir: "{{ v2v_build_dir }}"
24+

tasks/repositories-centos.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
- name: Ensure EPEL repository is installed
3+
yum:
4+
state: present
5+
name: epel-release

tasks/repositories-redhat.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
- name: Create the repository file for nbdkit packages
3+
copy:
4+
dest: /etc/yum.repos.d/v2v-nbdkit.repo
5+
owner: root
6+
group: root
7+
mode: 0644
8+
content: |
9+
[{{ v2v_repo_rpms_name }}]
10+
name={{ v2v_repo_rpms_name }}
11+
baseurl={{ v2v_repo_rpms_url }}
12+
enabled=1
13+
gpgcheck=0
14+
15+
[{{ v2v_repo_srpms_name }}]
16+
name={{ v2v_repo_srpms_name }}
17+
baseurl={{ v2v_repo_srpms_url }}
18+
enabled=1
19+
gpgcheck=0

tasks/uninstall.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
# ----------------------------- Initial checks -------------------------------
3+
4+
# Check that the required variables are set
5+
- assert:
6+
that: "{{ item }} is defined"
7+
msg: "Variable '{{ item }}' is mandatory to {{ role_action }} VDDK pluging."
8+
with_items:
9+
- v2v_vddk_install_dir
10+
11+
- name: Ensure nbdkit-* package are not installed
12+
yum:
13+
name: "{{ item }}"
14+
state: absent
15+
with_items:
16+
- nbdkit
17+
- nbdkit-plugin-vddk
18+
19+
- name: Remove packages repository
20+
file:
21+
path: /etc/yum.repos.d/v2v-nbdkit.repo
22+
state: absent
23+
24+
- name: Remove EPEL repository
25+
yum:
26+
name: epel-release
27+
state: absent
28+
29+
- name: Remove VDDK library
30+
file:
31+
path: "{{ v2v_vddk_install_dir }}/vmware-vix-disklib-distrib"
32+
state: absent

0 commit comments

Comments
 (0)