|
hace 6 años | |
---|---|---|
.. | ||
openshift-cluster | hace 6 años | |
sample-inventory | hace 6 años | |
OWNERS | hace 6 años | |
README.md | hace 6 años | |
configuration.md | hace 6 años | |
inventory.py | hace 6 años | |
post-install.md | hace 6 años | |
resources.py | hace 6 años | |
scaleup_inventory.py | hace 6 años |
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. In addition we work on providing integration with the OpenStack-native services (storage, lbaas, baremetal as a service, dns, etc.).
In order to run these Ansible playbooks, you'll need an Ansible host and an OpenStack environment.
Start by choosing a host from which you'll run Ansible. This can be the computer you read this guide on or an OpenStack VM you'll create specifically for this purpose.
The required dependencies for the Ansible host are:
Optional dependencies include:
python-openstackclient
python-heatclient
There are a few OS-specific instructions:
rhel-7-server-openstack-10-rpms
repository is required in order to install these openstack clients.yum install -y centos-release-openstack-pike
Once the dependencies are installed, clone the openshift-ansible repository:
$ git clone https://github.com/openshift/openshift-ansible
Before you start the installation, you'll need an OpenStack environment. Options include:
You can also use a public cloud or an OpenStack within your organization.
The OpenStack environment must satisfy these requirements:
m1.medium
/ 4GB RAM + 40GB disk should be enough for testingkeystonerc
file that lets you talk to the OpenStack servicesIt is also strongly recommended that you configure an external Neutron network with a floating IP address pool.
Configuration is done through an Ansible inventory directory. You can switch between multiple inventories to test multiple configurations.
Start by copying the sample inventory to your inventory directory.
$ cp -r openshift-ansible/playbooks/openstack/sample-inventory/ inventory
The sample inventory contains defaults that will do the following:
You may have to perform further configuration in order to match the inventory to your environment.
The OpenStack configuration file is 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
Set your OpenStack keypair name.
openstack keypair list
to find the keypairs registered with
OpenShift.~/.ssh/id_rsa
openshift_openstack_external_network_name
Set 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
Set the image you want your
OpenShift VMs to run.
openstack image list
for the list of available images.openshift_openstack_default_flavor
Set the flavor you want your
OpenShift VMs to use.
openstack flavor list
for the list of available flavors.The OpenShift configuration file is inventory/group_vars/OSEv3.yml
.
The default options will mostly work, but openshift-ansible's hardware check may fail unless you specified a large flavor suitable for a production-ready environment.
You can disable those checks by adding this line to inventory/group_vars/OSEv3.yml
:
openshift_disable_check: disk_availability,memory_availability,docker_storage
Important: 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 by configuring authentication.
The Configuration page details several additional options. These include:
Read the Configuration page for a full listing of configuration options.
Before running the installation playbook, you may want to create an ansible.cfg
file with useful defaults:
$ cp openshift-ansible/ansible.cfg ansible.cfg
We recommend adding an additional option:
any_errors_fatal = true
This will abort the Ansible playbook execution as soon as any error is encountered.
If you want, you can Build the OpenShift node images at this point.
Now, run the provision + install playbook. This will create OpenStack resources and deploy an OpenShift cluster on top of them:
$ ansible-playbook --user openshift \
-i openshift-ansible/playbooks/openstack/inventory.py \
-i inventory \
openshift-ansible/playbooks/openstack/openshift-cluster/provision_install.yml
-i
.~/.ssh/id_rsa
, use the --private-key
option to specify the correct path.openshift-ansible/playbooks/openstack/inventory.py
. This is a script that
looks for OpenStack resources and enables Ansible to reference them.Once installation completes, a few additional steps may be required or useful.
Read the Post-Install page for a full list of options.
The installation process not only creates a Heat stack, but can also perform actions such as writing DNS records or subscribing a host to RHN. In order to do a clean uninstall, run this command:
$ ansible-playbook --user openshift \
-i openshift-ansible/playbooks/openstack/inventory.py \
-i inventory \
openshift-ansible/playbooks/openstack/openshift-cluster/uninstall.yml