diff --git a/defaults/main.yml b/defaults/main.yml index 6080122c..10a1a3f0 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -32,6 +32,8 @@ nova_venv_enabled: true # system path used when the installing. nova_bin: "{{ nova_venv_bin }}" +nova_venv_download_url: http://127.0.0.1/venvs/untagged/ubuntu/nova.tgz + nova_fatal_deprecations: False ## System info @@ -289,6 +291,7 @@ nova_compute_kvm_apt_packages: # nova packages that must be installed before anything else nova_requires_pip_packages: - virtualenv + - virtualenv-tools - python-keystoneclient # Keystoneclient needed to OSA keystone lib nova_compute_pip_packages: diff --git a/tasks/nova_compute_kvm_install.yml b/tasks/nova_compute_kvm_install.yml index d9956415..ba2564ac 100644 --- a/tasks/nova_compute_kvm_install.yml +++ b/tasks/nova_compute_kvm_install.yml @@ -51,7 +51,9 @@ delay: 2 with_items: - "{{ nova_compute_pip_packages }}" - when: nova_venv_enabled | bool + when: + - nova_venv_enabled | bool + - nova_get_venv | failed tags: - nova-install - nova-pip-packages diff --git a/tasks/nova_console_novnc_install.yml b/tasks/nova_console_novnc_install.yml index bd7b77b9..9bcab62b 100644 --- a/tasks/nova_console_novnc_install.yml +++ b/tasks/nova_console_novnc_install.yml @@ -68,7 +68,9 @@ delay: 2 with_items: - "{{ nova_novnc_pip_packages }}" - when: nova_venv_enabled | bool + when: + - nova_venv_enabled | bool + - nova_get_venv | failed tags: - nova-install - nova-pip-packages diff --git a/tasks/nova_install.yml b/tasks/nova_install.yml index 5f75af1b..e5c217e5 100644 --- a/tasks/nova_install.yml +++ b/tasks/nova_install.yml @@ -52,6 +52,58 @@ - nova-install - nova-pip-packages +- name: Attempt venv download + get_url: + url: "{{ nova_venv_download_url }}" + dest: "/var/cache/{{ nova_venv_download_url | basename }}" + ignore_errors: true + register: get_venv + when: nova_venv_enabled | bool + tags: + - nova-install + - nova-pip-packages + +- name: Set nova get_venv fact + set_fact: + nova_get_venv: "{{ get_venv }}" + when: nova_venv_enabled | bool + tags: + - nova-install + - nova-pip-packages + +- name: Create nova venv dir + file: + path: "{{ nova_venv_bin | dirname }}" + state: directory + when: + - nova_venv_enabled | bool + - nova_get_venv | success + tags: + - nova-install + - nova-pip-packages + +- name: Unarchive pre-built venv + unarchive: + src: "/var/cache/{{ nova_venv_download_url | basename }}" + dest: "{{ nova_venv_bin | dirname }}" + copy: "no" + when: + - nova_venv_enabled | bool + - nova_get_venv | success + tags: + - nova-install + - nova-pip-packages + +- name: Update virtualenv path + command: > + virtualenv-tools --update-path=auto {{ nova_venv_bin | dirname }} + when: + - nova_venv_enabled | bool + - nova_get_venv | success + tags: + - nova-install + - nova-pip-packages + - name: Install pip packages (venv) pip: name: "{{ item }}" @@ -65,7 +117,9 @@ delay: 2 with_items: - "{{ nova_pip_packages }}" - when: nova_venv_enabled | bool + when: + - nova_venv_enabled | bool + - nova_get_venv | failed tags: - nova-install - nova-pip-packages