mirror of
https://github.com/oVirt/ovirt-ansible-hosted-engine-setup.git
synced 2026-02-05 15:45:22 +01:00
add compatibility version for hosted engine dc and cluster (#375)
* add compatibility version for hosted engine dc and cluster
This commit is contained in:
@@ -46,7 +46,9 @@ No.
|
||||
| he_pki_renew_on_restore | false | Renew engine PKI on restore if needed |
|
||||
| he_cluster | Default | name of the cluster with hosted-engine hosts |
|
||||
| he_cluster_cpu_type | null | cluster CPU type to be used in hosted-engine cluster (the same as HE host or lower) |
|
||||
| he_cluster_comp_version | null | Compatibility version of the hosted-engine cluster. Default value is the latest compatibility version |
|
||||
| he_data_center | Default | name of the datacenter with hosted-engine hosts |
|
||||
| he_data_center_comp_version | null | Compatibility version of the hosted-engine data center. Default value is the latest compatibility version |
|
||||
| he_host_name | $(hostname -f) | name used by the engine for the first host |
|
||||
| he_host_address | $(hostname -f) | address used by the engine for the first host |
|
||||
| he_bridge_if | null | interface used for the management bridge |
|
||||
|
||||
@@ -50,6 +50,7 @@
|
||||
ovirt_datacenter:
|
||||
state: present
|
||||
name: "{{ he_data_center }}"
|
||||
compatibility_version: "{{ he_data_center_comp_version | default(omit) }}"
|
||||
wait: true
|
||||
local: false
|
||||
auth: "{{ ovirt_auth }}"
|
||||
@@ -58,6 +59,7 @@
|
||||
ovirt_cluster:
|
||||
state: present
|
||||
name: "{{ he_cluster }}"
|
||||
compatibility_version: "{{ he_cluster_comp_version | default(omit) }}"
|
||||
data_center: "{{ he_data_center }}"
|
||||
cpu_type: "{{ he_cluster_cpu_type | default(omit) }}"
|
||||
wait: true
|
||||
@@ -75,6 +77,7 @@
|
||||
ovirt_cluster:
|
||||
data_center: "{{ he_data_center }}"
|
||||
name: "{{ he_cluster }}"
|
||||
compatibility_version: "{{ he_cluster_comp_version | default(omit) }}"
|
||||
auth: "{{ ovirt_auth }}"
|
||||
virt: true
|
||||
gluster: true
|
||||
|
||||
Reference in New Issue
Block a user