Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ Enables `chrony` and disables `ntp`.
Registers an IPA client with an IdM or IPA server.

#### Options
| parameter | requried | default | comments
| parameter | required | default | comments
|-----------------------|----------|---------|---------
| idm\_server | yes | | The IdM/IPA server to regsiter the IPA client with
| idm\_server | yes | | The IdM/IPA server to register the IPA client with
| idm\_domain | yes | | The IdM/IPA domain to register the IPA client with
| idm\_enroll\_user | yes | | The IdM/IPA user to enroll the IPA client with
| idm\_enroll\_password | yes | | The IdM/IPA password to enroll the IPA client with
Expand All @@ -52,7 +52,7 @@ Registers an IPA client with an IdM or IPA server.
### configure\_vm\_network\_and\_ip
Configures the virtualization provider network and IP for given hosts. This is useful if need migrate a VM from one vlan/subnet to another vlan/subnet by updating both the virtualization provider and destination host.

The concept is that this playbook is cloud provider agnostic and can figure out how to move a VM from one network to another on any cloud provider, staying on that same provider, based on gathering facts about the VM. Though currently it has only been tested and written for a couple providers, as need arises for more providers the playbook can be easly extended to handle more.
The concept is that this playbook is cloud provider agnostic and can figure out how to move a VM from one network to another on any cloud provider, staying on that same provider, based on gathering facts about the VM. Though currently it has only been tested and written for a couple providers, as need arises for more providers the playbook can be easily extended to handle more.

#### Tested With
* Red Hat Virtualization
Expand Down Expand Up @@ -81,7 +81,7 @@ The concept is that this playbook is cloud provider agnostic and can figure out
| virt\_network | yes | | Valid networks on the virtualization provider | Virtualization provider network to set for the VM
| ovirt\_url | If oVirt/RHV | | | oVirt/RHV url for API calls
| ovirt\_username | If oVirt/RHV | | | oVirt/RHV username for API calls
| ovirt\_password | If oVirt/RHV | | | oVirt/RHV passwrod for API calls
| ovirt\_password | If oVirt/RHV | | | oVirt/RHV password for API calls
| vsphere\_hostname | If vSphere | | | vSphere hostname for API calls
| vsphere\_username | If vSphere | | | vSphere username for API calls
| vsphere\_password | If vSphere | | | vSphere password for API calls
Expand All @@ -93,4 +93,4 @@ The concept is that this playbook is cloud provider agnostic and can figure out

#### Notes
* A backup of the grub configuration is made when changed.
* This playbook does not perform the required reboot to enable this paramater.
* This playbook does not perform the required reboot to enable this parameter.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

- name: Cloud | Configure VM Network and IP | VM
block:
- name: Cloud | Configure VM Network and IP | VM | Install nmcli Module Prerequists
- name: Cloud | Configure VM Network and IP | VM | Install nmcli Module Prerequisites
yum:
name:
- NetworkManager-glib
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- block:
- name: Cloud | Configure VM Network and IP | oVirt/RHV | Install Virt Module Prerequists
- name: Cloud | Configure VM Network and IP | oVirt/RHV | Install Virt Module Prerequisites
include_tasks: tasks/ovirt_modules_prerequists.yml
run_once: True

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
become: False
block:

- name: Cloud | Configure VM Network and IP | vSphere | Install Virt Module Prerequists
- name: Cloud | Configure VM Network and IP | vSphere | Install Virt Module Prerequisites
include_tasks: tasks/vsphere_modules_prerequists.yml
run_once: True

Expand Down