summaryrefslogtreecommitdiffstats
path: root/playbooks/openshift-logging/private/config.yml
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks/openshift-logging/private/config.yml')
-rw-r--r--playbooks/openshift-logging/private/config.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/playbooks/openshift-logging/private/config.yml b/playbooks/openshift-logging/private/config.yml
new file mode 100644
index 000000000..bc59bd95a
--- /dev/null
+++ b/playbooks/openshift-logging/private/config.yml
@@ -0,0 +1,37 @@
+---
+- name: Logging Install Checkpoint Start
+ hosts: all
+ gather_facts: false
+ tasks:
+ - name: Set Logging install 'In Progress'
+ run_once: true
+ set_stats:
+ data:
+ installer_phase_logging:
+ status: "In Progress"
+ start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
+
+- name: OpenShift Aggregated Logging
+ hosts: oo_first_master
+ roles:
+ - openshift_logging
+
+- name: Update Master configs
+ hosts: oo_masters:!oo_first_master
+ tasks:
+ - block:
+ - include_role:
+ name: openshift_logging
+ tasks_from: update_master_config
+
+- name: Logging Install Checkpoint End
+ hosts: all
+ gather_facts: false
+ tasks:
+ - name: Set Logging install 'Complete'
+ run_once: true
+ set_stats:
+ data:
+ installer_phase_logging:
+ status: "Complete"
+ end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"