Created
February 1, 2016 19:41
-
-
Save rjhowe/75ea255be10acc1d9761 to your computer and use it in GitHub Desktop.
Configuring Openshift Install to use port 443
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Based on OSE enterprise 3.1.0.4 installer | |
# sed -i 's/8443/443/g' /usr/share/ansible/openshift-ansible/roles/openshift_master/tasks/main.yml | |
# sed -i 's/8443/443/g' /usr/share/ansible/openshift-ansible/roles/openshift_master_cluster/tasks/configure.yml | |
Then add the following under "OSEv3:vars" | |
[OSEv3:vars] | |
openshift_master_cluster_method=native | |
openshift_master_cluster_hostname=openshift-cluster.example.com | |
openshift_master_cluster_public_hostname=openshift-cluster.example.com | |
openshift_master_api_port=443 | |
openshift_master_console_port=443 | |
openshift_master_public_api_url=https://openshift-cluster.example.com:443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment