File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
docker/bifrost/bifrost-base Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,13 @@ ENV ANSIBLE_GATHER_TIMEOUT=30
37
37
{% block bifrost_ansible_install %}
38
38
{% - if base_package_type == 'deb' %}
39
39
RUN apt-get --error-on=any update && \
40
+ bash -c '$VENV/bin/pip install "ansible>=9,<10 " && \
40
41
{%- else %}
41
42
RUN echo " " && \
43
+ bash -c '$VENV/bin/pip install " ansible >=8,<9 " && \
42
44
{%- endif %}
43
- bash -c 'export VENV=/var/lib/kolla/venv && \
44
- $VENV/bin/pip install "ansible>=6,<7 " && \
45
45
$VENV/bin/ansible-galaxy collection install -r /bifrost/ansible-collections-requirements.yml && \
46
- ansible-playbook -vvvv -i /bifrost/playbooks/inventory/target \
46
+ $VENV/bin/ ansible-playbook -vvvv -i /bifrost/playbooks/inventory/target \
47
47
/bifrost/playbooks/install.yaml \
48
48
-e git_branch={{ openstack_branch_slashed }} \
49
49
-e ipa_upstream_release={{ openstack_branch }} \
Original file line number Diff line number Diff line change
1
+ ---
2
+ upgrade :
3
+ - |
4
+ Ansible versions in ``bifrost-deploy`` container image have been updated
5
+ to ``8`` for rpm distros and ``9`` for deb.
You can’t perform that action at this time.
0 commit comments