diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-06 16:17:08 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-06 16:17:08 -0500 |
commit | 981c3c8621e36f0c90506923293bb3c8d6444376 (patch) | |
tree | 24bc78ebab4fdb5aafa3f44ce1e3a1545007d7db /roles | |
parent | 925db7a8663c38144e2dc145ccff1b05315924c3 (diff) | |
parent | 753c0e31a9e8adb84f6352aaef47d410abee307c (diff) | |
download | openshift-981c3c8621e36f0c90506923293bb3c8d6444376.tar.gz openshift-981c3c8621e36f0c90506923293bb3c8d6444376.tar.bz2 openshift-981c3c8621e36f0c90506923293bb3c8d6444376.tar.xz openshift-981c3c8621e36f0c90506923293bb3c8d6444376.zip |
Merge pull request #818 from abutcher/custom-certs-fixes
Named certificate fixes
Diffstat (limited to 'roles')
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index 1ba5fc13b..33aca987d 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -517,7 +517,7 @@ def set_aggregate_facts(facts): facts['master']['etcd_data_dir'] = '/var/lib/etcd' facts['common']['all_hostnames'] = list(all_hostnames) - facts['common']['internal_hostnames'] = list(all_hostnames) + facts['common']['internal_hostnames'] = list(internal_hostnames) return facts |