Detect openstack_release in kolla-ansible deploy-bifrost
This ensures that the default value of openstack_release - "auto" - is handled correctly when deploying bifrost. Change-Id: I71e6fc5a6b82dc5d6788bf093cd079c45d890ffd
This commit is contained in:
parent
2f8c9f83fa
commit
862f7b281e
@ -1,4 +1,20 @@
|
|||||||
---
|
---
|
||||||
|
- name: Detect openstack_release variable
|
||||||
|
hosts: bifrost
|
||||||
|
gather_facts: false
|
||||||
|
tasks:
|
||||||
|
- name: Get current kolla-ansible version number
|
||||||
|
local_action: command python -c "import pbr.version; print(pbr.version.VersionInfo('kolla-ansible'))"
|
||||||
|
register: kolla_ansible_version
|
||||||
|
changed_when: false
|
||||||
|
when: openstack_release == "auto"
|
||||||
|
|
||||||
|
- name: Set openstack_release variable
|
||||||
|
set_fact:
|
||||||
|
openstack_release: "{{ kolla_ansible_version.stdout }}"
|
||||||
|
when: openstack_release == "auto"
|
||||||
|
tags: always
|
||||||
|
|
||||||
- name: Apply role bifrost
|
- name: Apply role bifrost
|
||||||
hosts: bifrost
|
hosts: bifrost
|
||||||
roles:
|
roles:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user