Update Markdown syntax
This commit is contained in:
parent
811188bd0d
commit
2516dcad3f
1 changed files with 7 additions and 0 deletions
|
@ -11,6 +11,7 @@ Necessary files to deploy OpenShift 3.x on Devolab.
|
||||||
1. Checkout this repo on your local machine
|
1. Checkout this repo on your local machine
|
||||||
1. Update the `inventory/bastion-inventory` with your provisionned *bastion*
|
1. Update the `inventory/bastion-inventory` with your provisionned *bastion*
|
||||||
1. Run the `prereq_ansible_host.yml` playbook from your computer against the inventory:
|
1. Run the `prereq_ansible_host.yml` playbook from your computer against the inventory:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
ansible-playbook -i inventory/bastion-inventory prereq_ansible_host.yml -v
|
ansible-playbook -i inventory/bastion-inventory prereq_ansible_host.yml -v
|
||||||
```
|
```
|
||||||
|
@ -21,15 +22,20 @@ ansible-playbook -i inventory/bastion-inventory prereq_ansible_host.yml -v
|
||||||
1. Checkout this repo and move into the directory
|
1. Checkout this repo and move into the directory
|
||||||
1. Edit the `inventory/group_vars/all.yml` to your liking
|
1. Edit the `inventory/group_vars/all.yml` to your liking
|
||||||
1. Clone the `release-3.11` branch from the [openshift-ansible](https://github.com/openshift/openshift-ansible/tree/release-3.11) repository:
|
1. Clone the `release-3.11` branch from the [openshift-ansible](https://github.com/openshift/openshift-ansible/tree/release-3.11) repository:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone --single-branch --branch release-3.11 https://github.com/openshift/openshift-ansible.git
|
git clone --single-branch --branch release-3.11 https://github.com/openshift/openshift-ansible.git
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Run the provision playbook:
|
1. Run the provision playbook:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
ansible-playbook --user openshift -i openshift-ansible/playbooks/openstack/inventory.py -i inventory openshift-ansible/playbooks/openstack/openshift-cluster/provision.yml -v
|
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).
|
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).
|
||||||
1. 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):
|
1. 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>
|
console.openshift.devolab.lan IN A <master_floating_IP>
|
||||||
*.apps.openshift.devolab.lan IN A <infra_floating_IP>
|
*.apps.openshift.devolab.lan IN A <infra_floating_IP>
|
||||||
|
@ -40,6 +46,7 @@ console.openshift.devolab.lan IN A <master_floating_IP>
|
||||||
1. Edit the `inventory/group_vars/OSEv3.yml` to your liking
|
1. Edit the `inventory/group_vars/OSEv3.yml` to your liking
|
||||||
1. Edit the `extra_vars/auth_ldap.yml` with the LDAP account to use to bind to the LDAP server
|
1. Edit the `extra_vars/auth_ldap.yml` with the LDAP account to use to bind to the LDAP server
|
||||||
1. Run the installation playbook:
|
1. Run the installation playbook:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
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
|
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
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue