Fix reuse argument documentation
This commit is contained in:
parent
95cfe3da96
commit
531b93490b
1 changed files with 5 additions and 5 deletions
|
@ -81,19 +81,19 @@ requirements: ["shade"]
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Assign a floating IP to the fist interface of `cattle001` from an exiting
|
# Assign a floating IP to the fist interface of `cattle001` from an exiting
|
||||||
# external network or nova pool. If a free floating IP is already allocated to
|
# external network or nova pool. A new floating IP from the first available
|
||||||
# the project, it is reused; if not, a new one is created.
|
# external network is allocated to the project.
|
||||||
- os_floating_ip:
|
- os_floating_ip:
|
||||||
cloud: dguerri
|
cloud: dguerri
|
||||||
server: cattle001
|
server: cattle001
|
||||||
|
|
||||||
# Assign a new floating IP to the instance fixed ip `192.0.2.3` of
|
# Assign a new floating IP to the instance fixed ip `192.0.2.3` of
|
||||||
# `cattle001`. A new floating IP from the external network (or nova pool)
|
# `cattle001`. If a free floating IP is already allocated to the project, it is
|
||||||
# ext_net is created.
|
# reused; if not, a new one is created.
|
||||||
- os_floating_ip:
|
- os_floating_ip:
|
||||||
cloud: dguerri
|
cloud: dguerri
|
||||||
state: present
|
state: present
|
||||||
reuse: false
|
reuse: yes
|
||||||
server: cattle001
|
server: cattle001
|
||||||
network: ext_net
|
network: ext_net
|
||||||
fixed_address: 192.0.2.3
|
fixed_address: 192.0.2.3
|
||||||
|
|
Loading…
Reference in a new issue