Skip to content

Instantly share code, notes, and snippets.

@rjhowe
Created February 1, 2016 19:41
Show Gist options
  • Save rjhowe/75ea255be10acc1d9761 to your computer and use it in GitHub Desktop.
Save rjhowe/75ea255be10acc1d9761 to your computer and use it in GitHub Desktop.
Configuring Openshift Install to use port 443
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