Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy rpc-maas on OSP17 #753

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Revert the change which got injected during merge
  • Loading branch information
pratik705 committed Jun 20, 2024
commit d7e769d2b1d62467478db98e6d06c65eb9720ba2
4 changes: 2 additions & 2 deletions playbooks/common-tasks/maas-venv-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
pip:
name:
- pip
- setuptools<45
- "{%- if ansible_python.version.major == 2 -%}setuptools<45{% else %}setuptools{% endif %}"
extra_args: >-
-U --isolated
{{ pip_install_options | default('') }}
Expand All @@ -93,7 +93,7 @@
venv_pip_packages: "{{ venv_pip_packages | union(maas_pip_lxc_packages) }}"
when:
- not (ansible_local['maas']['general']['deploy_osp'] | bool)
- ansible_local['maas']['general']['maas_lxc_host'] | bool
- ansible_local['maas']['general']['maas_lxc_host'] | default(False) | bool

- name: Include docker pip packages
set_fact:
Expand Down
Loading