diff options
author | Russell Teague <rteague@redhat.com> | 2017-11-22 13:26:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-22 13:26:55 -0500 |
commit | 71e090a7a301ffd5ccef6bb78a28bfae96130ce6 (patch) | |
tree | 8bf7b5a9c95b3c7b3613b563a25dad45dbebfd83 /roles/etcd/tasks/migration | |
parent | 84703c7100e3abef586a77899512f8c494f3f101 (diff) | |
parent | ee5a7693a20be56b60b965aa92b4727593dd811c (diff) | |
download | openshift-71e090a7a301ffd5ccef6bb78a28bfae96130ce6.tar.gz openshift-71e090a7a301ffd5ccef6bb78a28bfae96130ce6.tar.bz2 openshift-71e090a7a301ffd5ccef6bb78a28bfae96130ce6.tar.xz openshift-71e090a7a301ffd5ccef6bb78a28bfae96130ce6.zip |
Merge pull request #6225 from mtnbikenc/include-deprecation-openshift-etcd
Include Deprecation - openshift-etcd
Diffstat (limited to 'roles/etcd/tasks/migration')
-rw-r--r-- | roles/etcd/tasks/migration/check.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/etcd/tasks/migration/check.yml b/roles/etcd/tasks/migration/check.yml index 5c45e5ae1..8ef81da28 100644 --- a/roles/etcd/tasks/migration/check.yml +++ b/roles/etcd/tasks/migration/check.yml @@ -1,7 +1,7 @@ --- # Check the cluster is healthy -- include: check_cluster_health.yml +- include_tasks: check_cluster_health.yml # Check if there is at least one v2 snapshot - name: Check if there is at least one v2 snapshot @@ -39,7 +39,7 @@ # - with_items not supported over block # Check the cluster status for the first time -- include: check_cluster_status.yml +- include_tasks: check_cluster_status.yml # Check the cluster status for the second time - block: @@ -50,7 +50,7 @@ seconds: 5 when: not l_etcd_cluster_status_ok | bool - - include: check_cluster_status.yml + - include_tasks: check_cluster_status.yml when: not l_etcd_cluster_status_ok | bool @@ -63,5 +63,5 @@ seconds: 5 when: not l_etcd_cluster_status_ok | bool - - include: check_cluster_status.yml + - include_tasks: check_cluster_status.yml when: not l_etcd_cluster_status_ok | bool |