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

Commit 0c77194

Browse files
committed
docs: document Ansible roles
It is incomplete, but it is something. The document can be finished later. Signed-off-by: Tomáš Golembiovský <[email protected]>
1 parent 0d05a8a commit 0c77194

File tree

2 files changed

+60
-15
lines changed

2 files changed

+60
-15
lines changed

README.md

+7-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
# V2V - Conversion Host - Ansible
2-
This repository contains Ansible artefacts used for V2V Conversion Host
32

4-
## Example inventory
3+
This repository contains Ansible artifacts used for V2V oVirt/RHV Conversion
4+
Host and OSP appliance for CloudForms/ManageIQ.
55

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-
```
6+
Content:
7+
8+
* Ansible [roles](docs/Ansible.md) for setup, check and uninstallation
9+
* [virt-v2v-wrapper](docs/Virt-v2v-wrapper.md) -- daemonizing wrapper for virt-v2v
10+
* kickstart files for creating OSP appliance

docs/Ansible.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Ansible Roles
2+
3+
There are many variables that can be configured to tune the setup.
4+
Some are useful only in development environment and some are not really meant
5+
to be changed.
6+
7+
The onely one that has to be defined is:
8+
9+
* `v2v_vddk_package_name`: this is the file name of the .tar.gz package with
10+
VDDK library. It is looked for in `/tmp` directory.
11+
12+
If you don't have the package locally on the host, you can also specify:
13+
14+
* `v2v_vddk_package_url`: the URL to the VDDK library package. The package is
15+
first downloaded from this location and stored in `/tmp`. Note that the file
16+
name must much the one in `v2v_vddk_package_name`. The best thing to achieve
17+
that is to incorporate that in to the URL, e.g.:
18+
`v2v_vddk_package_url: "http://gateway/vddk/{{ v2v_vddk_package_name }}"`
19+
20+
Other interesting variables are:
21+
22+
* `v2v_vddk_override`: normally the install role is not run if the plugin is
23+
already installed. To force the deployment set this variable to `true`.
24+
25+
* `v2v_checks_override`: the install role does performs some compatibility
26+
checks. By setting `v2v_checks_override` to `true` one can disable them.
27+
28+
* `v2v_yum_check` -- (default: `latest`) can be used to change the requirement
29+
on installed packages. Normally we check if the installed packages are at the
30+
latest version. This can cause troubles on disconnected or unconfigured
31+
systems. In that case the check can be ... by setting the value to `present`.
32+
(Since 1.7)
33+
34+
## To be documented...
35+
36+
* `v2v_repo_rpms_name`, `v2v_repo_rpms_url`, `v2v_repo_srpms_name`,
37+
`v2v_repo_srpms_url`:
38+
39+
## Example inventory
40+
41+
```yaml
42+
all:
43+
vars:
44+
v2v_repo_rpms_name: "v2v-nbdkit-rpms"
45+
v2v_repo_rpms_url: "http://content.example.com/v2v-nbdkit-rpms"
46+
v2v_repo_srpms_name: "v2v-nbdkit-src-rpms"
47+
v2v_repo_srpms_url: "http://content.example.com/v2v-nbdkit-src-rpms"
48+
v2v_vddk_package_name: "VMware-vix-disklib-6.5.2-6195444.x86_64.tar.gz"
49+
v2v_vddk_package_url: "http://content.example.com/VMware-vix-disklib-6.5.2-6195444.x86_64.tar.gz"
50+
hosts:
51+
rhvh01.example.com:
52+
rhvh02.example.com:
53+
```

0 commit comments

Comments
 (0)