diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-12-05 13:28:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-05 13:28:35 -0500 |
commit | 968f614e984da91a4e883a9642af8e66d49d87a0 (patch) | |
tree | 610fc73ab31224a9753374ff109c29f797a8828c /playbooks/openshift-logging/private | |
parent | 03f5d8249478ca5e62eb3d5db7aa1b7a43de96eb (diff) | |
parent | 2f76a594258e3ccdf55101c7266c65bd99c59abc (diff) | |
download | openshift-968f614e984da91a4e883a9642af8e66d49d87a0.tar.gz openshift-968f614e984da91a4e883a9642af8e66d49d87a0.tar.bz2 openshift-968f614e984da91a4e883a9642af8e66d49d87a0.tar.xz openshift-968f614e984da91a4e883a9642af8e66d49d87a0.zip |
Merge pull request #6154 from mtnbikenc/consolidate-openshift-logging
Playbook Consolidation - openshift-logging
Diffstat (limited to 'playbooks/openshift-logging/private')
-rw-r--r-- | playbooks/openshift-logging/private/config.yml | 37 | ||||
l--------- | playbooks/openshift-logging/private/library | 1 | ||||
l--------- | playbooks/openshift-logging/private/roles | 1 |
3 files changed, 39 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') }}" diff --git a/playbooks/openshift-logging/private/library b/playbooks/openshift-logging/private/library new file mode 120000 index 000000000..ba40d2f56 --- /dev/null +++ b/playbooks/openshift-logging/private/library @@ -0,0 +1 @@ +../../../library
\ No newline at end of file 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 |