cloud: ovirt: add override_iptables to examples (#21474)
This commit is contained in:
parent
67f74bbc81
commit
a5d34f2ac2
1 changed files with 6 additions and 1 deletions
|
@ -73,6 +73,7 @@ options:
|
||||||
override_iptables:
|
override_iptables:
|
||||||
description:
|
description:
|
||||||
- "If True host iptables will be overridden by host deploy script."
|
- "If True host iptables will be overridden by host deploy script."
|
||||||
|
- "Note that C(override_iptables) is I(false) by default in oVirt."
|
||||||
force:
|
force:
|
||||||
description:
|
description:
|
||||||
- "If True host will be forcibly moved to desired state."
|
- "If True host will be forcibly moved to desired state."
|
||||||
|
@ -108,12 +109,14 @@ EXAMPLES = '''
|
||||||
# Examples don't contain auth parameter for simplicity,
|
# Examples don't contain auth parameter for simplicity,
|
||||||
# look at ovirt_auth module to see how to reuse authentication:
|
# look at ovirt_auth module to see how to reuse authentication:
|
||||||
|
|
||||||
# Add host with username/password supporting SR-IOV:
|
# Add host with username/password supporting SR-IOV.
|
||||||
|
# Note that override_iptables is false by default in oVirt:
|
||||||
- ovirt_hosts:
|
- ovirt_hosts:
|
||||||
cluster: Default
|
cluster: Default
|
||||||
name: myhost
|
name: myhost
|
||||||
address: 10.34.61.145
|
address: 10.34.61.145
|
||||||
password: secret
|
password: secret
|
||||||
|
override_iptables: true
|
||||||
kernel_params:
|
kernel_params:
|
||||||
- intel_iommu=on
|
- intel_iommu=on
|
||||||
|
|
||||||
|
@ -123,6 +126,7 @@ EXAMPLES = '''
|
||||||
cluster: Default
|
cluster: Default
|
||||||
name: myhost2
|
name: myhost2
|
||||||
address: 10.34.61.145
|
address: 10.34.61.145
|
||||||
|
override_iptables: true
|
||||||
|
|
||||||
# Deploy hosted engine host
|
# Deploy hosted engine host
|
||||||
- ovirt_hosts:
|
- ovirt_hosts:
|
||||||
|
@ -130,6 +134,7 @@ EXAMPLES = '''
|
||||||
name: myhost2
|
name: myhost2
|
||||||
password: secret
|
password: secret
|
||||||
address: 10.34.61.145
|
address: 10.34.61.145
|
||||||
|
override_iptables: true
|
||||||
hosted_engine: deploy
|
hosted_engine: deploy
|
||||||
|
|
||||||
# Maintenance
|
# Maintenance
|
||||||
|
|
Loading…
Reference in a new issue