diff options
author | Scott Dodson <sdodson@redhat.com> | 2018-01-06 12:17:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-06 12:17:40 -0500 |
commit | a5eee09d02120bb16d7f81d1b05982e1a69df4dc (patch) | |
tree | b8939099e2b6ee0ce12a41c8d9456121994b6c6b /playbooks/openshift-web-console/private/config.yml | |
parent | c0e349bebcfbec0c2424c91f60727910e48b0fac (diff) | |
parent | 296ee5ee346c843eb69786e1ab997e72870839ff (diff) | |
download | openshift-a5eee09d02120bb16d7f81d1b05982e1a69df4dc.tar.gz openshift-a5eee09d02120bb16d7f81d1b05982e1a69df4dc.tar.bz2 openshift-a5eee09d02120bb16d7f81d1b05982e1a69df4dc.tar.xz openshift-a5eee09d02120bb16d7f81d1b05982e1a69df4dc.zip |
Merge pull request #6359 from spadgett/web-console-server
Install web console server
Diffstat (limited to 'playbooks/openshift-web-console/private/config.yml')
-rw-r--r-- | playbooks/openshift-web-console/private/config.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/playbooks/openshift-web-console/private/config.yml b/playbooks/openshift-web-console/private/config.yml new file mode 100644 index 000000000..ffd702d20 --- /dev/null +++ b/playbooks/openshift-web-console/private/config.yml @@ -0,0 +1,31 @@ +--- +- name: Web Console Install Checkpoint Start + hosts: all + gather_facts: false + tasks: + - name: Set Web Console install 'In Progress' + run_once: true + set_stats: + data: + installer_phase_web_console: + status: "In Progress" + start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}" + +- name: Web Console + hosts: oo_first_master + roles: + - openshift_web_console + vars: + first_master: "{{ groups.oo_first_master[0] }}" + +- name: Web Console Install Checkpoint End + hosts: all + gather_facts: false + tasks: + - name: Set Web Console install 'Complete' + run_once: true + set_stats: + data: + installer_phase_web_console: + status: "Complete" + end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}" |