
Remove all tasks and variables related to toggling between installation of nova inside or outside of a Python virtual environment. Installing within a venv is now the only supported deployment. Additionally, a few changes have been made to make the creation of the venv more resistant to interruptions during a run of the role. * unarchiving a pre-built venv will now also occur when the venv directory is created, not only after being downloaded * virtualenv-tools is run against both pre-built and non pre-built venvs to account for interruptions during or prior to unarchiving Change-Id: Ia8687d49803705702f0e9f7ea9a83d3c05694d46 Implements: blueprint only-install-venvs
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
---
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Remove old git directory
|
|
file:
|
|
path: "/usr/share/novnc"
|
|
state: "absent"
|
|
tags:
|
|
- nova-install
|
|
- nova-novnc-git
|
|
|
|
- name: Get package from git
|
|
git:
|
|
repo: "{{ nova_novncproxy_git_repo }}"
|
|
dest: "/usr/share/novnc"
|
|
clone: "yes"
|
|
update: "yes"
|
|
version: "{{ nova_novncproxy_git_install_branch }}"
|
|
force: yes
|
|
accept_hostkey: yes
|
|
register: git_clone
|
|
until: git_clone|success
|
|
retries: 5
|
|
delay: 2
|
|
tags:
|
|
- nova-install
|
|
- nova-novnc-git
|
|
|
|
- name: Install pip packages
|
|
pip:
|
|
name: "{{ item }}"
|
|
state: latest
|
|
virtualenv: "{{ nova_bin | dirname }}"
|
|
virtualenv_site_packages: "no"
|
|
extra_args: "{{ pip_install_options|default('') }}"
|
|
register: install_packages
|
|
until: install_packages|success
|
|
retries: 5
|
|
delay: 2
|
|
with_items: "{{ nova_novnc_pip_packages }}"
|
|
when:
|
|
- nova_get_venv | failed or nova_developer_mode | bool
|
|
tags:
|
|
- nova-install
|
|
- nova-pip-packages
|
|
|
|
- include: nova_console_novnc_ssl.yml
|
|
when: nova_console_user_ssl_cert is defined and nova_console_user_ssl_key is defined
|
|
tags:
|
|
- nova-novnc
|
|
- nova-novnc-ssl
|