RETIRED, Ansible based project for setting up TripleO virtual environments
Go to file
Steve Baker 743da68d25 Run multinode and undercloud jobs nova-less
None of these jobs actually use nova, so it should be possible to run
them without.

Depends-On: https://review.opendev.org/#/c/703038/

Change-Id: I472f8d146d865316da4066cc6845e23c8808c907
Blueprint: nova-less-deploy
2020-01-18 05:25:15 +00:00
ci-scripts Fix log collection for Phase1 virthost jobs 2019-10-04 10:17:24 +05:30
config Run multinode and undercloud jobs nova-less 2020-01-18 05:25:15 +00:00
doc Install texttable and harmonize the way to install. 2019-12-06 14:44:53 +01:00
library Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
molecule Fedora 28 removal 2019-09-03 18:08:56 +01:00
playbooks Make the playbook's yaml file start with "---" 2019-07-14 21:11:50 +08:00
releasenotes OpenDev Migration Patch 2 2019-04-22 10:51:54 +05:30
roles Merge "Also consider FS type when resizing overcloud img" 2020-01-14 15:33:56 +00:00
test_plugins Fix H102 Apache 2.0 license header not found 2016-07-29 14:08:00 -04:00
tests Added RedHat-8 release file 2019-07-19 20:52:21 +05:30
zuul.d Run multinode jobs on all patches 2019-07-18 10:11:55 +00:00
.ansible-lint lint: pre-commit hook maintenance 2020-01-13 11:28:45 +00:00
.gitignore Remove developer tools from tripleo .gitignore 2018-11-06 14:38:51 +02:00
.gitreview OpenDev Migration Patch 2019-04-19 19:42:42 +00:00
.pre-commit-config.yaml lint: pre-commit hook maintenance 2020-01-13 11:28:45 +00:00
.yamllint Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
Dockerfile Docker file for running quickstart in container 2018-01-15 18:29:55 +00:00
LICENSE Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
README.rst Fix --install-deps bindep for quickstart.sh 2019-05-15 16:40:58 -03:00
ansible-role-requirements.yml Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
ansible.cfg Add ARA python3 paths to ansible.cfg of oooq 2019-08-12 13:48:28 +03:00
ansible_ssh_env.sh Use export in ansible_ssh_env file 2016-10-20 17:11:08 +00:00
bindep.txt bindep: remove python-pip from centos 2019-12-23 06:04:44 +00:00
devmode.sh OpenDev Migration Patch 2 2019-04-22 10:51:54 +05:30
fs-matrix.py Generate fs matrix from source yaml files 2019-08-06 16:07:30 -03:00
install-deps.sh print out the git commit hash 2019-11-20 12:46:58 -07:00
quickstart-extras-requirements.txt Add tripleo-operator-ansible to install 2020-01-06 17:29:02 -07:00
quickstart-role-requirements.txt Removing locking hash on undercloud post role 2016-09-14 03:33:22 -04:00
quickstart.sh Merge "Update broken docs link in default deployment message" 2020-01-15 12:48:09 +00:00
requirements.txt Bump tripleo quickstart ansible to 2.8 2019-08-08 15:03:38 +00:00
setup.cfg Test install-deps.sh script using pytest/molecule 2019-06-11 17:10:22 +01:00
setup.py Add installation and setup machinery 2015-11-30 17:16:00 -05:00
test-requirements.txt Generate fs matrix from source yaml files 2019-08-06 16:07:30 -03:00
tox.ini Use python -m pip instead pip command. 2020-01-13 08:03:57 +01:00

README.rst

Team and repository tags

image

tripleo-quickstart

An up-to-date HTML version is available on docs.openstack.org.

Release notes for the project can be found at: https://docs.openstack.org/releasenotes/tripleo-quickstart/

One of the barriers to entry for trying out TripleO and its derivatives has been the relative difficulty in getting an environment up quickly.

This set of ansible roles is meant to help.

Quickstart's default deployment method uses a physical machine, which is referred to as $VIRTHOST throughout this documentation. On this physical machine Quickstart sets up multiple virtual machines (VMs) and virtual networks using libvirt.

One of the VMs is set up as undercloud, an all-in-one OpenStack cloud used by system administrators to deploy the overcloud, the end-user facing OpenStack installation, usually consisting of multiple VMs.

You will need a $VIRTHOST with at least 16 GB of RAM, preferably 32 GB, and you must be able to ssh to the virthost machine as root without a password from the machine running ansible. Currently the virthost machine must be running a recent Red Hat-based Linux distribution (CentOS 7.x, RHEL 7.x). Other distributions could work but will not be supported with out CI validation.

Quickstart tool runs commands with superuser privileges as installing packages to the deployer system. The script should be run by a sudo user, e.g. deployer, which should be added to the sudoers configuration, as shown below:

deployer ALL=(ALL) NOPASSWD: ALL

Note

Running quickstart.sh commands as root is not suggested or supported.

The SSH server on your $VIRTHOST must be accessible via public keys for both the root and stack users.

A quick way to test that root to your virthost machine is ready to rock is:

ssh root@$VIRTHOST uname -a

The stack user is not added until the quickstart deploy runs, so this cannot be tested in advance. However, if you lock down on a per-user basis, ensure AllowUsers includes stack.

Timeouts can be an issue if the SSH server is configured to disconnect users after periods of inactivity. This can be addressed for example by:

ClientAliveInterval 120
ClientAliveCountMax 720

The quickstart defaults are meant to "just work", so it is as easy as downloading and running the quickstart.sh script.

Copyright 2015-2016 Red Hat, 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.