Browse Source

Merge pull request #106 from detiber/condionalNodeOption

Conditionally set --nodes on master
Thomas Wiest 10 years ago
parent
commit
16b4b62c7f
1 changed files with 3 additions and 2 deletions
  1. 3 2
      roles/openshift_master/tasks/main.yml

+ 3 - 2
roles/openshift_master/tasks/main.yml

@@ -6,8 +6,9 @@
   lineinfile:
     dest: /etc/sysconfig/openshift-master
     regexp: '^OPTIONS='
-    line: "OPTIONS=\"--public-master={{ openshift_hostname }} --nodes={{ openshift_node_ips
-              | join(',') }}  --loglevel={{ openshift_master_debug_level }}\""
+    line: "OPTIONS=\"--public-master={{ openshift_hostname }} {% if
+    openshift_node_ips %} --nodes={{ openshift_node_ips
+              | join(',') }} {% endif %} --loglevel={{ openshift_master_debug_level }}\""
   notify:
   - restart openshift-master