diff options
author | Scott Dodson <sdodson@redhat.com> | 2018-01-24 08:10:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 08:10:53 -0500 |
commit | 7e112b2c5893623dcd059813c993b0fab57e58b4 (patch) | |
tree | fb226772ec0f0273cef60f903ab7f3bd17d06e68 /playbooks/gcp/openshift-cluster/launch.yml | |
parent | dd5c2a24872490f34be8516e4f03a4076be35789 (diff) | |
parent | f2b14d2e76d8a9b19d9515f00c0eac85876363f5 (diff) | |
download | openshift-7e112b2c5893623dcd059813c993b0fab57e58b4.tar.gz openshift-7e112b2c5893623dcd059813c993b0fab57e58b4.tar.bz2 openshift-7e112b2c5893623dcd059813c993b0fab57e58b4.tar.xz openshift-7e112b2c5893623dcd059813c993b0fab57e58b4.zip |
Merge pull request #6541 from smarterclayton/move_gcp_in
Allow openshift-ansible image to deploy to GCP
Diffstat (limited to 'playbooks/gcp/openshift-cluster/launch.yml')
-rw-r--r-- | playbooks/gcp/openshift-cluster/launch.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/playbooks/gcp/openshift-cluster/launch.yml b/playbooks/gcp/openshift-cluster/launch.yml new file mode 100644 index 000000000..02f00408a --- /dev/null +++ b/playbooks/gcp/openshift-cluster/launch.yml @@ -0,0 +1,12 @@ +# This playbook launches a new cluster or converges it if already launched +--- +- import_playbook: build_image.yml + when: openshift_gcp_build_image | default(False) | bool + +- import_playbook: provision.yml + +- hosts: localhost + tasks: + - meta: refresh_inventory + +- import_playbook: install.yml |