Eduardo Minguez Perez 1f53d335a3 Add support for ak/orgid 6 năm trước cách đây
..
openshift-cluster 1f53d335a3 Add support for ak/orgid 6 năm trước cách đây
sample-inventory e44ef02cc2 Merge pull request #9538 from rh-dluong/openstack-docker-var 6 năm trước cách đây
OWNERS 45eda3c950 Add Luis Tomas to Kuryr and OpenStack owners 6 năm trước cách đây
README.md 4505a09373 Update documentation links, docs.openshift.org -> docs.okd.io 6 năm trước cách đây
configuration.md 4e997822c2 Fix backcompat with OpenStack inventory 6 năm trước cách đây
inventory.py 4e997822c2 Fix backcompat with OpenStack inventory 6 năm trước cách đây
post-install.md de98c9cfb5 Add the OpenStack master scaleup playbook 6 năm trước cách đây
resources.py 4e997822c2 Fix backcompat with OpenStack inventory 6 năm trước cách đây
scaleup_inventory.py 4e997822c2 Fix backcompat with OpenStack inventory 6 năm trước cách đây

README.md

OpenStack Provisioning

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.).

Requirements

In order to run these Ansible playbooks, you'll need an Ansible host and an OpenStack environment.

Ansible Host

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: The rhel-7-server-openstack-10-rpms repository is required in order to install these openstack clients.
  • CentOS: Run 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

OpenStack Environment

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:

  • It must be Newton (equivalent to Red hat OpenStack 10) or newer
  • Heat (Orchestration) must be available
  • The deployment image (CentOS 7.4 or RHEL 7) must be loaded
  • The deployment flavor must be available to your user
  • The keypair for SSH must be available in OpenStack
  • You must have akeystonerc file that lets you talk to the OpenStack services
  • In order to install an OpenShift cluster and deploy services, we recommend that you have a minimum of 30 security groups, 200 security group rules, and 200 ports available in your quota.

It is also strongly recommended that you configure an external Neutron network with a floating IP address pool.

Configuration

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:

  • create VMs for an OpenShift cluster with 1 Master node, 1 Infra node, and 2 App nodes
  • create a new Neutron network and assign floating IP addresses to the VMs

You may have to perform further configuration in order to match the inventory to your environment.

OpenStack Configuration

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.
    • See openstack keypair list to find the keypairs registered with OpenShift.
    • This must correspond to your private SSH key in ~/.ssh/id_rsa
  • openshift_openstack_external_network_name Set the floating IP network of your OpenStack.
    • See openstack network list for the list of networks.
    • Often called public, external or ext-net.
  • openshift_openstack_default_image_name Set the image you want your OpenShift VMs to run.
    • See openstack image list for the list of available images.
  • openshift_openstack_default_flavor Set the flavor you want your OpenShift VMs to use.
    • See openstack flavor list for the list of available flavors.

OpenShift Configuration

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.

Advanced Configuration

The Configuration page details several additional options. These include:

Read the Configuration page for a full listing of configuration options.

Installation

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
  • 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.
  • Note that we must pass in the dynamic inventory -- openshift-ansible/playbooks/openstack/inventory.py. This is a script that looks for OpenStack resources and enables Ansible to reference them.

Post-Install

Once installation completes, a few additional steps may be required or useful.

Read the Post-Install page for a full list of options.

Uninstall

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