OpenShift on Devolab configuration
Go to file
Cedric Girard 2516dcad3f Update Markdown syntax 2019-03-25 12:29:45 +01:00
devolab-user-config remove extra quotes 2019-01-11 16:01:59 +01:00
extra_vars add generic auth_ldap file 2019-03-25 12:18:04 +01:00
inventory add bastion inventory 2019-03-25 11:47:27 +01:00
namespace-configuration-controller@0ab5a97885 repository for the namespace configuration controller 2019-01-11 15:08:25 +01:00
.gitmodules repository for the namespace configuration controller 2019-01-11 15:08:25 +01:00
README.md Update Markdown syntax 2019-03-25 12:29:45 +01:00
compress-logrotate.yml Extra playbooks 2019-03-25 11:40:20 +01:00
journald-size.yml Extra playbooks 2019-03-25 11:40:20 +01:00
prereq_ansible_host.yml add playbook for prerequisites configuration 2018-11-14 14:22:44 +01:00
update_host_file.yml playbook to update etc/hosts file 2018-11-14 18:56:34 +01:00

README.md

Devolab OpenShift

Necessary files to deploy OpenShift 3.x on Devolab.

Installation

Prerequisites

  1. Order an OpenStack Project on the ITPortal with sufficient quotas
  2. Deploy a bastion VM, based on CentOS with the smallest available flavor.
  3. Checkout this repo on your local machine
  4. Update the inventory/bastion-inventory with your provisionned bastion
  5. Run the prereq_ansible_host.yml playbook from your computer against the inventory:
ansible-playbook -i inventory/bastion-inventory prereq_ansible_host.yml -v

Infrastructure provisionning

  1. SSH into the bastion server
  2. Checkout this repo and move into the directory
  3. Edit the inventory/group_vars/all.yml to your liking
  4. Clone the release-3.11 branch from the openshift-ansible repository:
git clone --single-branch --branch release-3.11 https://github.com/openshift/openshift-ansible.git
  1. Run the provision playbook:
ansible-playbook --user openshift -i openshift-ansible/playbooks/openstack/inventory.py -i inventory openshift-ansible/playbooks/openstack/openshift-cluster/provision.yml -v
  1. Run the update_host_file.yml playbook to update host files on each provisionned host (except if some DNSaaS has been put in place on Devolab).
  2. Ask DNS administrator to add the following entries into Devolab DNS (put the correct IP addresses and replace openshift.devolab.lan with the correct domain name):
console.openshift.devolab.lan IN A <master_floating_IP>
*.apps.openshift.devolab.lan IN A <infra_floating_IP>

OpenShift Installation

  1. Edit the inventory/group_vars/OSEv3.yml to your liking
  2. Edit the extra_vars/auth_ldap.yml with the LDAP account to use to bind to the LDAP server
  3. Run the installation playbook:
ansible-playbook --user openshift -i openshift-ansible/playbooks/openstack/inventory.py -i inventory -e '@extra_vars/auth_ldap.yml' openshift-ansible/playbooks/openstack/openshift-cluster/install.yml -v