RETIRED, Ansible based project for setting up TripleO virtual environments
Go to file
Arx Cruz 21a63ffbab Adding tempest plugins into black list for featureset021
Although featureset021 is supposed to run full tempest without skip
list, some plugins doesn't have support into tripleo or
python-tempestconf. In this case, these plugins tests are always get
executed making the job run slower, and in sometimes the controller just
hang out due the huge amount of unecessary requests. This also make it
hard to get a real baseline because featureset021 will always fail
because of these unconfigured/unsupported plugins.

Change-Id: I800a2850a71017b90ad89e17051563691b509dbf
2019-02-13 10:52:00 +01:00
ci-scripts Avoid silent parsing failure of provisioned.csv 2019-01-18 13:11:10 +00:00
config Adding tempest plugins into black list for featureset021 2019-02-13 10:52:00 +01:00
doc/source Merge "[Documentation] Must remove quickstart directory." 2019-01-18 00:48:37 +00:00
library Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
playbooks Lint fixes for playbooks and roles 2019-01-08 15:27:54 +00:00
releasenotes Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
roles Add supplemental node to inventory 2019-02-12 15:01:35 +00:00
test_plugins Fix H102 Apache 2.0 license header not found 2016-07-29 14:08:00 -04:00
zuul.d Merge "Run all linters via pre-commit" 2019-01-17 22:02:40 +00:00
.ansible-lint Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
.gitignore Remove developer tools from tripleo .gitignore 2018-11-06 14:38:51 +02:00
.gitreview Fix .gitreview for move to openstack git 2016-04-01 11:08:07 -04:00
.pre-commit-config.yaml Run all linters via pre-commit 2019-01-15 11:14:31 +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 Merge "add release notes to README.rst" 2018-12-12 15:32:13 +00:00
ansible-role-requirements.yml Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
ansible.cfg Added requirements for integrating os_tempest role 2019-01-21 14:01:01 +05:30
ansible_ssh_env.sh Use export in ansible_ssh_env file 2016-10-20 17:11:08 +00:00
bindep.txt Ensure the latest rpms versions are installed 2019-02-11 15:29:34 -07:00
devmode.sh Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
install-deps.sh Ensure the latest rpms versions are installed 2019-02-11 15:29:34 -07:00
other-requirements.txt Update and replace http with https for doc links 2018-04-15 17:41:48 +00:00
quickstart-extras-requirements.txt Added requirements for integrating os_tempest role 2019-01-21 14:01:01 +05:30
quickstart-role-requirements.txt Removing locking hash on undercloud post role 2016-09-14 03:33:22 -04:00
quickstart.sh use bindep to install rpm deps 2019-02-07 00:02:13 +00:00
requirements.txt Set ansible in quickstart to 2.5.7 2018-09-03 19:02:35 +00:00
setup.cfg Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
setup.py Add installation and setup machinery 2015-11-30 17:16:00 -05:00
test-requirements.txt Run all linters via pre-commit 2019-01-15 11:14:31 +00:00
tox.ini Run all linters via pre-commit 2019-01-15 11:14:31 +00: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.

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.