Browse Source

Fix rhel_subscribe

Scott Dodson 9 years ago
parent
commit
6a16a03ec0
2 changed files with 6 additions and 2 deletions
  1. 4 0
      playbooks/byo/rhel_subscribe.yml
  2. 2 2
      roles/openshift_facts/tasks/main.yml

+ 4 - 0
playbooks/byo/rhel_subscribe.yml

@@ -1,4 +1,8 @@
 ---
+- include: ../common/openshift-cluster/evaluate_groups.yml
+  vars_files:
+  - ../../byo/openshift-cluster/cluster_hosts.yml
+  
 - hosts: all
   vars:
     openshift_deployment_type: "{{ deployment_type }}"

+ 2 - 2
roles/openshift_facts/tasks/main.yml

@@ -42,8 +42,8 @@
       https_proxy: "{{ openshift_https_proxy | default(None) }}"
       no_proxy: "{{ openshift_no_proxy | default(None) }}"
       generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
-      no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
-                                                   | union(groups['oo_masters_to_config'])
+      no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config'] | default([]) 
+                                                   | union(groups['oo_masters_to_config'] | default([]) ) 
                                                    | union(groups['oo_etcd_to_config'] | default([])))
                                                | oo_collect('openshift.common.hostname') | default([]) | join (',')
                                                }}"