Browse Source

Fix SSL support between master and node(s)

Jhon Honce 10 years ago
parent
commit
fd4d628907
2 changed files with 12 additions and 1 deletions
  1. 10 0
      playbooks/gce/openshift-node/launch.yml
  2. 2 1
      roles/openshift_node/tasks/main.yml

+ 10 - 0
playbooks/gce/openshift-node/launch.yml

@@ -45,3 +45,13 @@
 
 # Apply the configs, separate so that just the configs can be run by themselves
 - include: config.yml
+
+# Always bounce service to pick up new credentials
+#- name: "Restart instances"
+#  hosts: oo_hosts_to_config
+#  connection: ssh
+#  user: root
+#  tasks:
+#    - debug: var=groups.oo_hosts_to_config
+#    - name: Restart OpenShift
+#      service: name=openshift-node enabled=yes state=restarted

+ 2 - 1
roles/openshift_node/tasks/main.yml

@@ -37,8 +37,9 @@
 - name: Save firewalld port for OpenShift
   firewalld: port=10250/tcp permanent=true state=enabled
 
+  # fixme: Once the openshift_cluster playbook is published state should be started
   # Always bounce service to pick up new credentials
 - name: Enable OpenShift
-  service: name=openshift-node enabled=yes state=started
+  service: name=openshift-node enabled=yes state=restarted
 
 - local_action: file name={{ mktemp.stdout }} state=absent