|
|
@ -116,10 +116,11 @@ openshift_master_identity_providers: |
|
|
EOF |
|
|
EOF |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
Create a file named `group_vars/all`, containing your global variables: |
|
|
Create a file named `group_vars/all/itix.yaml`, containing your global variables: |
|
|
|
|
|
|
|
|
```sh |
|
|
```sh |
|
|
cat <<EOF > group_vars/OSEv3 |
|
|
mkdir -p group_vars/all/ |
|
|
|
|
|
cat <<EOF > group_vars/all/itix.yaml |
|
|
--- |
|
|
--- |
|
|
# The regular user account you created on your server |
|
|
# The regular user account you created on your server |
|
|
ansible_ssh_user: nicolas |
|
|
ansible_ssh_user: nicolas |
|
|
@ -414,3 +415,10 @@ spec: |
|
|
name: ansible-tower-web-svc |
|
|
name: ansible-tower-web-svc |
|
|
EOF |
|
|
EOF |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
## Deploy Integr8ly |
|
|
|
|
|
|
|
|
|
|
|
```sh |
|
|
|
|
|
cd integr8ly |
|
|
|
|
|
ansible-playbook -i ../prod.hosts playbooks/install.yml |
|
|
|
|
|
``` |
|
|
|