We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef48b1d commit 63b6848Copy full SHA for 63b6848
etc/kayobe/ansible/check-kolla-version.yml
@@ -4,13 +4,13 @@
4
hosts: localhost
5
gather_facts: false
6
tasks:
7
- - name: Get installed Kolla-Ansible commit
+ - name: Get current Kolla-Ansible tag
8
ansible.builtin.command:
9
cmd: git describe --tags
10
chdir: "{{ lookup('ansible.builtin.env', 'KOLLA_SOURCE_PATH') }}"
11
register: kolla_ansible_current_version
12
13
- - name: Check installed Kolla-Ansible version is the latest
+ - name: Check installed Kolla-Ansible version is the expected version
14
ansible.builtin.assert:
15
that: "stackhpc_kolla_ansible_source_version in kolla_ansible_current_version.stdout"
16
fail_msg: |
0 commit comments