This directory contains Ansible playbooks and roles to create OpenStack resources (servers, networking, volumes, security groups, etc.). The result is an environment ready for OpenShift installation via openshift-ansible.
We provide everything necessary to be able to install OpenShift on OpenStack (including the DNS and load balancer servers when necessary). In addition, we work on providing integration with the OpenStack-native services (storage, lbaas, baremetal as a service, dns, etc.).
Before you start the installation, you need to have an OpenStack environment to connect to. You can use a public cloud or an OpenStack within your organisation. It is also possible to use Devstack or TripleO. In the case of TripleO, we will be running on top of the overcloud.
The OpenStack release must be Newton (for Red Hat OpenStack this is version 10) or newer. It must also satisfy these requirements:
m1.medium
/ 4GB RAM + 40GB disk should be enough for testingkeystonerc
file that lets you talk to the openstack services
Optional:
OpenShift requires DNS to operate properly. OpenStack supports DNS-as-a-service in the form of the Designate project, but the playbooks here don't support it yet. Until we do, you will need to provide a DNS solution yourself (or in case you are not running Designate when we do).
If your server supports nsupdate, we will use it to add the necessary records.
TODO(shadower): describe how to build a sample DNS server and how to configure our playbooks for nsupdate.
There are four main parts to the installation:
This guide is going to install OpenShift Origin with CentOS 7 images with minimal customisation.
We will create the VMs for running OpenShift, in a new Neutron network, assign Floating IP addresses and configure DNS.
The OpenShift cluster will have a single Master node that will run
etcd
, a single Infra node and two App nodes.
You can look at the Advanced Configuration page for additional options.
First, you need to select where to run Ansible from (the Ansible host). This can be the computer you read this guide on or an OpenStack VM you'll create specifically for this purpose.
We will use a Docker image that has all the dependencies installed to make things easier. If you don't want to use Docker, take a look at the Ansible host dependencies and make sure they're installed.
Your Ansible host needs to have the following:
keystonerc
file with your OpenStack credentialsAssuming your private key is ~/.ssh/id_rsa
and keystonerc
in your
current directory:
$ sudo docker run -it -v ~/.ssh:/mnt/.ssh:Z \
-v $PWD/keystonerc:/root/.config/openstack/keystonerc.sh:Z \
redhatcop/control-host-openstack bash
This will create the container, add your SSH key and source your
keystonerc
. It should be set up for the installation.
You can verify that everything is in order:
$ less .ssh/id_rsa
$ ansible --version
$ openstack image list
The configuration is all done in an Ansible inventory directory. We will clone the openshift-ansible repository and set things up for a minimal installation.
$ git clone https://github.com/openshift/openshift-ansible
$ cp -r openshift-ansible/playbooks/openstack/sample-inventory/ inventory
If you're testing multiple configurations, you can have multiple inventories and switch between them.
The OpenStack configuration is in inventory/group_vars/all.yml
.
Open the file and plug in the image, flavor and network configuration corresponding to your OpenStack installation.
$ vi inventory/group_vars/all.yml
openshift_openstack_keypair_name
to your OpenStack keypair name.
openstack keypair list
to find the keypairs registered with
OpenShift.~/.ssh/id_rsa
openshift_openstack_external_network_name
to the floating IP
network of your openstack.
openstack network list
for the list of networks.public
, external
or ext-net
.openshift_openstack_default_image_name
to the image you want your
OpenShift VMs to run.
openstack image list
for the list of available images.openshift_openstack_default_flavor
to the flavor you want your
OpenShift VMs to use.
openstack flavor list
for the list of available flavors.openshift_openstack_dns_nameservers
to the list of the IP addresses
of the DNS servers used for the private address resolution.NOTE ON DNS: at minimum, the OpenShift nodes need to be able to access each
other by their hostname. OpenStack doesn't provide this by default, so you
need to provide a DNS server. Put the address of that DNS server in
openshift_openstack_dns_nameservers
variable.
The OpenShift configuration is in inventory/group_vars/OSEv3.yml
.
The default options will mostly work, but unless you used the large flavors for a production-ready environment, openshift-ansible's hardware check will fail.
Let's disable those checks by putting this in
inventory/group_vars/OSEv3.yml
:
openshift_disable_check: disk_availability,memory_availability
NOTE: The default authentication method will allow any username and password in! If you're running this in a public place, you need to set up access control.
Feel free to look at the Sample OpenShift Inventory and the advanced configuration.
We provide an ansible.cfg
file which has some useful defaults -- you should
copy it to the directory you're going to run ansible-playbook
from.
$ cp openshift-ansible/ansible.cfg ansible.cfg
Then run the provisioning playbook -- this will create the OpenStack resources:
$ ansible-playbook --user openshift -i inventory openshift-ansible/playbooks/openstack/openshift-cluster/provision.yaml
If you're using multiple inventories, make sure you pass the path to
the right one to -i
.
If your SSH private key is not in ~/.ssh/id_rsa
use the --private-key
option to specify the correct path.
Run the byo/config.yml
playbook on top of the OpenStack nodes we have
prepared.
$ ansible-playbook -i inventory openshift-ansible/playbooks/byo/config.yml
And that's it! You should have a small but functional OpenShift cluster now.
Take a look at how to access the cluster and how to remove it as well as the more advanced configuration: