Merge "Stop passing ironic_url to ansible modules"
This commit is contained in:
commit
329e52e074
@ -49,31 +49,8 @@
|
||||
- name: "If in noauth mode and no clouds.yaml, unset authentication parameters."
|
||||
set_fact:
|
||||
auth_type: None
|
||||
auth: {}
|
||||
auth:
|
||||
endpoint: "{{ ironic_url | default(ironic_api_url) }}"
|
||||
when:
|
||||
- auth is undefined
|
||||
- noauth_mode | bool
|
||||
|
||||
# FIXME(dtantsur): the ironic modules hardcode None and "None" as valid values,
|
||||
# while "none" does not trigger handling of ironic_url.
|
||||
- name: "Work around a bug in the ansible modules."
|
||||
set_fact:
|
||||
auth_type: None
|
||||
when: auth_type == 'none'
|
||||
|
||||
# FIXME(dtantsur): this should work by simply passing the cloud to ansible
|
||||
# modules, but it does not because of some issues there.
|
||||
- name: "Provide ironic_url if there is an endpoint override"
|
||||
set_fact:
|
||||
ironic_url: "{{ openstack_cloud.baremetal_endpoint_override }}"
|
||||
when:
|
||||
- not ironic_url | default("")
|
||||
- openstack_cloud is defined
|
||||
- openstack_cloud.baremetal_endpoint_override is defined
|
||||
|
||||
- name: "Provide ironic_url for no-auth mode if there is no override"
|
||||
set_fact:
|
||||
ironic_url: "{{ ironic_api_url }}"
|
||||
when:
|
||||
- not ironic_url | default("")
|
||||
- noauth_mode | bool
|
||||
|
@ -24,7 +24,6 @@
|
||||
auth_type: "{{ auth_type | default(omit) }}"
|
||||
auth: "{{ auth | default(omit) }}"
|
||||
ca_cert: "{{ tls_certificate_path | default(omit) }}"
|
||||
ironic_url: "{{ ironic_url | default(omit) }}"
|
||||
uuid: "{{ uuid | default() }}"
|
||||
name: "{{ name | default() }}"
|
||||
skip_items:
|
||||
|
@ -30,7 +30,6 @@
|
||||
auth_type: "{{ auth_type | default(omit) }}"
|
||||
auth: "{{ auth | default(omit) }}"
|
||||
ca_cert: "{{ tls_certificate_path | default(omit) }}"
|
||||
ironic_url: "{{ ironic_url | default(omit) }}"
|
||||
uuid: "{{ uuid | default() }}"
|
||||
name: "{{ name | default() }}"
|
||||
skip_items:
|
||||
@ -114,7 +113,6 @@
|
||||
auth_type: "{{ auth_type | default(omit) }}"
|
||||
auth: "{{ auth | default(omit) }}"
|
||||
ca_cert: "{{ tls_certificate_path | default(omit) }}"
|
||||
ironic_url: "{{ ironic_url | default(omit) }}"
|
||||
uuid: "{{ uuid }}"
|
||||
state: present
|
||||
# Allow instance_info in the inventory to override configdrive
|
||||
|
@ -20,7 +20,8 @@ clouds:
|
||||
{% elif noauth_mode | default(false) | bool %}
|
||||
bifrost:
|
||||
auth_type: "none"
|
||||
baremetal_endpoint_override: {{ ironic_api_url }}
|
||||
auth:
|
||||
endpoint: {{ ironic_api_url }}
|
||||
baremetal_introspection_endpoint_override: {{ ironic_inspector_api_url }}
|
||||
{% if enable_tls | bool %}
|
||||
cacert: "{{ tls_certificate_path }}"
|
||||
@ -28,7 +29,8 @@ clouds:
|
||||
# Deprecated
|
||||
bifrost-inspector:
|
||||
auth_type: "none"
|
||||
endpoint: {{ ironic_inspector_api_url }}
|
||||
auth:
|
||||
endpoint: {{ ironic_inspector_api_url }}
|
||||
{% if enable_tls | bool %}
|
||||
cacert: "{{ tls_certificate_path }}"
|
||||
{% endif %}
|
||||
|
@ -21,7 +21,6 @@
|
||||
auth_type: "{{ auth_type | default(omit) }}"
|
||||
auth: "{{ auth | default(omit) }}"
|
||||
ca_cert: "{{ tls_certificate_path | default(omit) }}"
|
||||
ironic_url: "{{ ironic_url | default(omit) }}"
|
||||
uuid: "{{ uuid | default() }}"
|
||||
name: "{{ name | default() }}"
|
||||
state: absent
|
||||
|
@ -21,7 +21,6 @@
|
||||
auth_type: "{{ auth_type | default(omit) }}"
|
||||
auth: "{{ auth | default(omit) }}"
|
||||
ca_cert: "{{ tls_certificate_path | default(omit) }}"
|
||||
ironic_url: "{{ ironic_url | default(omit) }}"
|
||||
driver: ""
|
||||
uuid: "{{ uuid | default() }}"
|
||||
name: "{{ name | default() }}"
|
||||
|
@ -25,7 +25,6 @@
|
||||
auth_type: "{{ auth_type | default(omit) }}"
|
||||
auth: "{{ auth | default(omit) }}"
|
||||
ca_cert: "{{ tls_certificate_path | default(omit) }}"
|
||||
ironic_url: "{{ ironic_url | default(omit) }}"
|
||||
driver: "{{ driver }}"
|
||||
uuid: "{{ uuid | default() }}"
|
||||
name: "{{ name | default() }}"
|
||||
|
@ -50,7 +50,6 @@
|
||||
auth_type: "{{ auth_type | default(omit) }}"
|
||||
auth: "{{ auth | default(omit) }}"
|
||||
ca_cert: "{{ tls_certificate_path | default(omit) }}"
|
||||
ironic_url: "{{ ironic_url | default(omit) }}"
|
||||
uuid: "{{ uuid | default('') }}"
|
||||
name: "{{ name | default('') }}"
|
||||
timeout: "{{ inspection_wait_timeout }}"
|
||||
|
Loading…
Reference in New Issue
Block a user