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 | |
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')
-rw-r--r-- | playbooks/deploy_cluster.yml | 3 | ||||
-rw-r--r-- | playbooks/openshift-logging/private/config.yml | 1 | ||||
-rw-r--r-- | playbooks/openshift-metrics/private/config.yml | 1 | ||||
-rw-r--r-- | playbooks/openshift-web-console/config.yml | 4 | ||||
-rw-r--r-- | playbooks/openshift-web-console/private/config.yml | 31 | ||||
l--------- | playbooks/openshift-web-console/private/roles | 1 |
6 files changed, 41 insertions, 0 deletions
diff --git a/playbooks/deploy_cluster.yml b/playbooks/deploy_cluster.yml index 0e6bde09a..5efdc486a 100644 --- a/playbooks/deploy_cluster.yml +++ b/playbooks/deploy_cluster.yml @@ -22,6 +22,9 @@ - import_playbook: openshift-hosted/private/config.yml +- import_playbook: openshift-web-console/private/config.yml + when: openshift_web_console_install | default(true) | bool + - import_playbook: openshift-metrics/private/config.yml when: openshift_metrics_install_metrics | default(false) | bool diff --git a/playbooks/openshift-logging/private/config.yml b/playbooks/openshift-logging/private/config.yml index d5256f55c..d6b26647c 100644 --- a/playbooks/openshift-logging/private/config.yml +++ b/playbooks/openshift-logging/private/config.yml @@ -16,6 +16,7 @@ roles: - openshift_logging +# TODO: Remove when master config property is removed - name: Update Master configs hosts: oo_masters:!oo_first_master tasks: diff --git a/playbooks/openshift-metrics/private/config.yml b/playbooks/openshift-metrics/private/config.yml index 327f034d3..1e237e3f0 100644 --- a/playbooks/openshift-metrics/private/config.yml +++ b/playbooks/openshift-metrics/private/config.yml @@ -16,6 +16,7 @@ roles: - role: openshift_metrics +# TODO: Remove when master config property is removed - name: OpenShift Metrics hosts: oo_masters:!oo_first_master serial: 1 diff --git a/playbooks/openshift-web-console/config.yml b/playbooks/openshift-web-console/config.yml new file mode 100644 index 000000000..c7814207c --- /dev/null +++ b/playbooks/openshift-web-console/config.yml @@ -0,0 +1,4 @@ +--- +- import_playbook: ../init/main.yml + +- import_playbook: private/config.yml 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') }}" diff --git a/playbooks/openshift-web-console/private/roles b/playbooks/openshift-web-console/private/roles new file mode 120000 index 000000000..e2b799b9d --- /dev/null +++ b/playbooks/openshift-web-console/private/roles @@ -0,0 +1 @@ +../../../roles/
\ No newline at end of file |