openstack-ansible/playbooks/repo-build.yml
Kevin Carter 0681e25a52 Add novnc console support
This change adds in support for the novnc console type in Nova.

* The change adds in a few new variables to the defaults which allow
  for the novnc console to be configued.
* A port entry was added to haproxy to support the console type.
* noVNC is being installed from source in the nova_console container.
  The git repo has been added to the openstack_other.yml repo-package file
  which allows for the repo to be cloned into the repo containers and then
  distributed out where needed from within the environment.

Closes-Bug: 1428833

Change-Id: I221557aad77bf266b4e2fae23007ffa210aa1f75
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2015-10-07 06:35:41 +00:00

104 lines
4.2 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.
# The purpose here is to allow for the environment to update/build the
# python wheel files from the CURRENT release, as set in the openstack_release
# variable.
- name: Build new repo packages for a given release
hosts: repo_all[0]
max_fail_percentage: 20
gather_facts: false
user: root
tasks:
- name: Create a build report for all known packages within a release
shell: |
yaprt --quiet \
create-report \
--report-file {{ repo_service_home_folder }}/repo/reports/release-{{ openstack_release }}-report.json \
--git-install-repos {{ item['remote_packages'] }} \
--git-repo-path "{{ repo_service_home_folder }}/repo/openstackgit" \
--packages {{ item['packages'] }}
with_py_pkgs: ../
sudo: yes
sudo_user: "{{ repo_service_user_name }}"
tags:
- repo-create-report
- name: Build all known python packages requirements
shell: |
yaprt --quiet \
build-wheels \
--report-file {{ repo_service_home_folder }}/repo/reports/release-{{ openstack_release }}-report.json \
--storage-pool "{{ repo_service_home_folder }}/repo/pools" \
--link-dir "{{ repo_service_home_folder }}/repo/os-releases/{{ openstack_release }}" \
--pip-extra-link-dirs "{{ repo_service_home_folder }}/repo/links" \
--pip-index "{{ repo_pip_default_index }}" \
--pip-extra-index "https://pypi.python.org/simple/" \
--pip-bulk-operation \
--build-output "{{ repo_build_output }}" \
--build-dir "{{ repo_build_dir }}" \
--build-requirements \
--git-repo-path "{{ repo_service_home_folder }}/repo/openstackgit" \
--force-clean
sudo: yes
sudo_user: "{{ repo_service_user_name }}"
tags:
- repo-build-requirements
- name: Build all known python packages git sources
shell: |
yaprt --quiet \
build-wheels \
--report-file {{ repo_service_home_folder }}/repo/reports/release-{{ openstack_release }}-report.json \
--storage-pool "{{ repo_service_home_folder }}/repo/pools" \
--link-dir "{{ repo_service_home_folder }}/repo/os-releases/{{ openstack_release }}" \
--pip-extra-link-dirs "{{ repo_service_home_folder }}/repo/links" \
--pip-no-deps \
--build-output "{{ repo_build_output }}" \
--build-dir "{{ repo_build_dir }}" \
--build-branches \
--build-releases \
--git-repo-path "{{ repo_service_home_folder }}/repo/openstackgit" \
--force-clean
sudo: yes
sudo_user: "{{ repo_service_user_name }}"
tags:
- repo-build-git-sources
- name: Create html indexes
shell: |
yaprt --quiet \
create-html-indexes \
--repo-dir "{{ repo_service_home_folder }}/repo" \
--dir-exclude "{{ repo_service_home_folder }}/repo/openstackgit"
sudo: yes
sudo_user: "{{ repo_service_user_name }}"
tags:
- repo-html-indexes
- name: Store all git source
shell: |
yaprt --quiet \
store-repos \
--report-file {{ repo_service_home_folder }}/repo/reports/release-{{ openstack_release }}-report.json \
--git-repo-path "{{ repo_service_home_folder }}/repo/openstackgit"
sudo: yes
sudo_user: "{{ repo_service_user_name }}"
tags:
- repo-store-git-sources
vars:
repo_build_dir: "/tmp/openstack-builder"
repo_build_output: "/tmp/openstack-wheel-output"