summaryrefslogtreecommitdiffstats
path: root/roles/docker/tasks/main.yml
diff options
context:
space:
mode:
authorRussell Teague <rteague@redhat.com>2017-11-16 10:52:56 -0500
committerRussell Teague <rteague@redhat.com>2017-11-16 10:52:56 -0500
commita4c533e2a567562248768b2bc4998d1a36810894 (patch)
treeef2ad1d0969d7530f2b42d75046e714f01e21621 /roles/docker/tasks/main.yml
parent7a18158c1df667d2bc45fae3ca62ed35400bedb8 (diff)
downloadopenshift-a4c533e2a567562248768b2bc4998d1a36810894.tar.gz
openshift-a4c533e2a567562248768b2bc4998d1a36810894.tar.bz2
openshift-a4c533e2a567562248768b2bc4998d1a36810894.tar.xz
openshift-a4c533e2a567562248768b2bc4998d1a36810894.zip
Include Deprecation - Init Playbook Paths
Diffstat (limited to 'roles/docker/tasks/main.yml')
-rw-r--r--roles/docker/tasks/main.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/docker/tasks/main.yml b/roles/docker/tasks/main.yml
index 69ee62790..55052b0a3 100644
--- a/roles/docker/tasks/main.yml
+++ b/roles/docker/tasks/main.yml
@@ -2,7 +2,7 @@
# These tasks dispatch to the proper set of docker tasks based on the
# inventory:openshift_docker_use_system_container variable
-- include: udev_workaround.yml
+- include_tasks: udev_workaround.yml
when: docker_udev_workaround | default(False) | bool
- set_fact:
@@ -20,7 +20,7 @@
- not l_use_crio_only
- name: Use Package Docker if Requested
- include: package_docker.yml
+ include_tasks: package_docker.yml
when:
- not l_use_system_container
- not l_use_crio_only
@@ -35,13 +35,13 @@
changed_when: false
- name: Use System Container Docker if Requested
- include: systemcontainer_docker.yml
+ include_tasks: systemcontainer_docker.yml
when:
- l_use_system_container
- not l_use_crio_only
- name: Add CRI-O usage Requested
- include: systemcontainer_crio.yml
+ include_tasks: systemcontainer_crio.yml
when:
- l_use_crio
- openshift_docker_is_node_or_master | bool