diff options
Diffstat (limited to 'playbooks/openshift-logging')
-rw-r--r-- | playbooks/openshift-logging/config.yml | 9 | ||||
-rw-r--r-- | playbooks/openshift-logging/private/config.yml | 38 | ||||
l--------- | playbooks/openshift-logging/private/roles | 1 |
3 files changed, 48 insertions, 0 deletions
diff --git a/playbooks/openshift-logging/config.yml b/playbooks/openshift-logging/config.yml new file mode 100644 index 000000000..83d330284 --- /dev/null +++ b/playbooks/openshift-logging/config.yml @@ -0,0 +1,9 @@ +--- +# +# This playbook is a preview of upcoming changes for installing +# Hosted logging on. See inventory/hosts.example for the +# currently supported method. +# +- import_playbook: ../init/main.yml + +- import_playbook: private/config.yml diff --git a/playbooks/openshift-logging/private/config.yml b/playbooks/openshift-logging/private/config.yml new file mode 100644 index 000000000..d6b26647c --- /dev/null +++ b/playbooks/openshift-logging/private/config.yml @@ -0,0 +1,38 @@ +--- +- 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 + +# TODO: Remove when master config property is removed +- name: Update Master configs + hosts: oo_masters:!oo_first_master + tasks: + - block: + - import_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') }}" diff --git a/playbooks/openshift-logging/private/roles b/playbooks/openshift-logging/private/roles new file mode 120000 index 000000000..20c4c58cf --- /dev/null +++ b/playbooks/openshift-logging/private/roles @@ -0,0 +1 @@ +../../../roles
\ No newline at end of file |