Enable overriding the service setup host python interpreter
In order to enable the service setup host python interpreter to be changed easily, we make it a variable. This will be useful when someone sets the service setup host to be the utility container, because we'll be able to set this var by default. Change-Id: Ia9fc197bc0ab75cac6842314fa5a2141eeff1d21
This commit is contained in:
parent
26fdbcd102
commit
70b5e95d0b
@ -22,6 +22,7 @@ debug: False
|
|||||||
# for the service setup. The host must already have
|
# for the service setup. The host must already have
|
||||||
# clouds.yaml properly configured.
|
# clouds.yaml properly configured.
|
||||||
ironic_service_setup_host: "{{ openstack_service_setup_host | default('localhost') }}"
|
ironic_service_setup_host: "{{ openstack_service_setup_host | default('localhost') }}"
|
||||||
|
ironic_service_setup_host_python_interpreter: "{{ openstack_service_setup_host_python_interpreter | default((ironic_service_setup_host == 'localhost') | ternary(ansible_playbook_python, ansible_python['executable'])) }}"
|
||||||
|
|
||||||
# Comma separated list of Glance API servers
|
# Comma separated list of Glance API servers
|
||||||
ironic_glance_api_servers: "{{ (glance_service_internalurl | default('http://localhost')) | netorigin }}"
|
ironic_glance_api_servers: "{{ (glance_service_internalurl | default('http://localhost')) | netorigin }}"
|
||||||
|
@ -21,8 +21,7 @@
|
|||||||
- name: Setup the service
|
- name: Setup the service
|
||||||
delegate_to: "{{ ironic_service_setup_host }}"
|
delegate_to: "{{ ironic_service_setup_host }}"
|
||||||
vars:
|
vars:
|
||||||
ansible_python_interpreter: >-
|
ansible_python_interpreter: "{{ ironic_service_setup_host_python_interpreter }}"
|
||||||
{{ (ironic_service_setup_host == 'localhost') | ternary(ansible_playbook_python, ansible_python['executable']) }}
|
|
||||||
block:
|
block:
|
||||||
- name: Add service to the keystone service catalog
|
- name: Add service to the keystone service catalog
|
||||||
os_keystone_service:
|
os_keystone_service:
|
||||||
|
Loading…
Reference in New Issue
Block a user