|
| 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