From ee6adf9e9a520cc5873bf9f36924ae9aa4c47c7c Mon Sep 17 00:00:00 2001
From: Steve Milner <smilner@redhat.com>
Date: Fri, 27 Oct 2017 13:47:08 -0400
Subject: docker: Create openshift_docker_is_node_or_master variable

This can be used in place of:

    inventory_hostname in groups['oo_masters_to_config'] or \
    inventory_hostname in groups['oo_nodes_to_config']

While the previous version works, this change helps with the tasks are
run during AMI creation.

Code written by Kenny Woodson @kwoodson.
---
 roles/docker/tasks/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'roles/docker/tasks/main.yml')

diff --git a/roles/docker/tasks/main.yml b/roles/docker/tasks/main.yml
index 5ea73568a..1539af53f 100644
--- a/roles/docker/tasks/main.yml
+++ b/roles/docker/tasks/main.yml
@@ -35,4 +35,4 @@
   include: systemcontainer_crio.yml
   when:
     - l_use_crio
-    - inventory_hostname in groups['oo_masters_to_config'] or inventory_hostname in groups['oo_nodes_to_config']
+    - openshift_docker_is_node_or_master | bool
-- 
cgit v1.2.3