Browse Source

Updating to correctly pull handler for openshift_logging. Adding logic to openshift_hosted_logging too

ewolinetz 8 years ago
parent
commit
d9bebc99fe

+ 5 - 0
roles/openshift_hosted_logging/handlers/main.yml

@@ -0,0 +1,5 @@
+---
+- name: restart master
+  systemd: name={{ openshift.common.service_type }}-master state=restarted
+  when: (openshift.master.ha is not defined or not openshift.master.ha | bool) and (not (master_service_status_changed | default(false) | bool))
+  notify: Verify API Server

+ 1 - 0
roles/openshift_hosted_logging/meta/main.yaml

@@ -1,3 +1,4 @@
 ---
 dependencies:
   - { role: openshift_common }
+  - { role: openshift_master_facts }

+ 7 - 0
roles/openshift_hosted_logging/tasks/deploy_logging.yaml

@@ -165,6 +165,13 @@
   retries: 20
   delay: 15
 
+- name: Adding Kibana route information to loggingPublicURL
+  modify_yaml:
+    dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
+    yaml_key: assetConfig.loggingPublicURL
+    yaml_value: "https://{{ openshift_logging_kibana_hostname }}"
+  notify: restart master
+
 - debug:
     msg: "Logging components deployed. Note persistent volume for elasticsearch must be setup manually"
 

+ 5 - 0
roles/openshift_logging/handlers/main.yml

@@ -0,0 +1,5 @@
+---
+- name: restart master
+  systemd: name={{ openshift.common.service_type }}-master state=restarted
+  when: (openshift.master.ha is not defined or not openshift.master.ha | bool) and (not (master_service_status_changed | default(false) | bool))
+  notify: Verify API Server

+ 1 - 0
roles/openshift_logging/meta/main.yaml

@@ -14,3 +14,4 @@ galaxy_info:
 dependencies:
 - role: lib_openshift
 - role: openshift_facts
+- role: openshift_master_facts