Merge "Pass name to os_ironic and os_ironic_node modules"
This commit is contained in:
commit
922da4fa9a
@ -17,7 +17,8 @@
|
|||||||
auth_type: None
|
auth_type: None
|
||||||
auth: None
|
auth: None
|
||||||
ironic_url: "{{ ironic_url }}"
|
ironic_url: "{{ ironic_url }}"
|
||||||
uuid: "{{ uuid }}"
|
uuid: "{{ uuid | default() }}"
|
||||||
|
name: "{{ name | default() }}"
|
||||||
state: absent
|
state: absent
|
||||||
instance_info: "{}"
|
instance_info: "{}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
auth: None
|
auth: None
|
||||||
ironic_url: "{{ ironic_url }}"
|
ironic_url: "{{ ironic_url }}"
|
||||||
driver: ""
|
driver: ""
|
||||||
uuid: "{{ uuid }}"
|
uuid: "{{ uuid | default() }}"
|
||||||
|
name: "{{ name | default() }}"
|
||||||
state: absent
|
state: absent
|
||||||
nics: "{{ nics }}"
|
nics: "{{ nics }}"
|
||||||
driver_info: "{}"
|
driver_info: "{}"
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
auth: None
|
auth: None
|
||||||
ironic_url: "{{ ironic_url }}"
|
ironic_url: "{{ ironic_url }}"
|
||||||
driver: "{{ driver }}"
|
driver: "{{ driver }}"
|
||||||
uuid: "{{ uuid }}"
|
uuid: "{{ uuid | default() }}"
|
||||||
|
name: "{{ name | default() }}"
|
||||||
state: present
|
state: present
|
||||||
nics: "{{nics}}"
|
nics: "{{nics}}"
|
||||||
properties: "{{ properties }}"
|
properties: "{{ properties }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user