diff options
author | Diego Castro <spinolacastro@gmail.com> | 2015-12-17 08:58:12 -0300 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2016-01-12 16:22:52 -0500 |
commit | 22eb2be9a1131279f1057912c36eba9591450dac (patch) | |
tree | df5a94f65be3aea062f9eb4657ea09d2a2573465 /roles/openshift_master/tasks | |
parent | 98e46eda537fae3a7547f8a1ab1337dd7229252e (diff) | |
download | openshift-22eb2be9a1131279f1057912c36eba9591450dac.tar.gz openshift-22eb2be9a1131279f1057912c36eba9591450dac.tar.bz2 openshift-22eb2be9a1131279f1057912c36eba9591450dac.tar.xz openshift-22eb2be9a1131279f1057912c36eba9591450dac.zip |
Controllers_port and firewall rules
Diffstat (limited to 'roles/openshift_master/tasks')
-rw-r--r-- | roles/openshift_master/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml index 61b416f93..d749bce8d 100644 --- a/roles/openshift_master/tasks/main.yml +++ b/roles/openshift_master/tasks/main.yml @@ -258,7 +258,7 @@ line: "{{ item.line }}" with_items: - regex: '^OPTIONS=' - line: "OPTIONS=--loglevel={{ openshift.master.debug_level }} --listen=https://0.0.0.0:8444" + line: "OPTIONS=--loglevel={{ openshift.master.debug_level }} --listen=https://{{ openshift.master.bind_addr }}:{{ openshift.master.controllers_port }}" - regex: '^CONFIG_FILE=' line: "CONFIG_FILE={{ openshift_master_config_file }}" when: openshift_master_ha | bool and openshift_master_cluster_method == "native" |