git clone https://github.com/openshift/openshift-ansible.git
cd openshift-ansible
This ansible repo is currently under heavy revision for providing OSE support; the following items are highly likely to change before the OSE support is merged into the upstream repo:
sh
subscription-manager repos --disable="*"
subscription-manager repos \
--enable="rhel-7-server-rpms" \
--enable="rhel-7-server-extras-rpms" \
--enable="rhel-server-7-ose-beta-rpms"
Example inventory file for configuring one master and two nodes for the test environment. This can be configured in the default inventory file (/etc/ansible/hosts), or using a custom file and passing the --inventory option to ansible-playbook.
/etc/ansible/hosts:
# This is an example of a bring your own (byo) host inventory
# host group for masters
[masters]
ose3-master.example.com
# host group for nodes
[nodes]
ose3-node[1:2].example.com
The hostnames above should resolve both from the hosts themselves and the host where ansible is running (if different).
/etc/ansible/group_vars/all:
---
# Assume that we want to use the root as the ssh user for all hosts
ansible_ssh_user: root
# Default debug level for all OpenShift hosts
openshift_debug_level: 4
# Set the OpenShift deployment type for all hosts
openshift_deployment_type: enterprise
# Override the default registry for development
openshift_registry_url: docker-buildvm-rhose.usersys.redhat.com:5000/openshift3_beta/ose-${component}:${version}
# To use the latest OpenShift Enterprise Errata puddle:
#openshift_additional_repos:
#- id: ose-devel
# name: ose-devel
# baseurl: http://buildvm-devops.usersys.redhat.com/puddle/build/OpenShiftEnterpriseErrata/3.0/latest/RH7-RHOSE-3.0/$basearch/os
# enabled: 1
# gpgcheck: 0
# To use the latest OpenShift Enterprise Whitelist puddle:
openshift_additional_repos:
- id: ose-devel
name: ose-devel
baseurl: http://buildvm-devops.usersys.redhat.com/puddle/build/OpenShiftEnterprise/3.0/latest/RH7-RHOSE-3.0/$basearch/os
enabled: 1
gpgcheck: 0
From the openshift-ansible checkout run:
ansible-playbook playbooks/byo/config.yml
Note: this assumes that the host inventory is /etc/ansible/hosts and the group_vars are defined in /etc/ansible/group_vars, if using a different inventory file (and a group_vars directory that is in the same directory as the directory as the inventory) use the -i option for ansible-playbook.
On the master host:
systemctl restart openshift-sdn-master
openshift ex router --create=true \
--credentials=/var/lib/openshift/openshift.local.certificates/openshift-client/.kubeconfig \
--images='docker-buildvm-rhose.usersys.redhat.com:5000/openshift3_beta/ose-${component}:${version}'
On the master host:
openshift ex registry --create=true \
--credentials=/var/lib/openshift/openshift.local.certificates/openshift-client/.kubeconfig \
--images='docker-buildvm-rhose.usersys.redhat.com:5000/openshift3_beta/ose-${component}:${version}' \
--mount-host=/var/lib/openshift/docker-registry