From 919a268de3dc2778613ef3ea817431d38fe35dab Mon Sep 17 00:00:00 2001
From: Toni Ylenius <toni.ylenius@iki.fi>
Date: Wed, 28 Nov 2018 07:56:26 +0200
Subject: [PATCH] Disable gather_facts from non-kubeadm deprecation notice

fact gathering causes errors when using become (-b) and there is no sudo access
locally
---
 cluster.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cluster.yml b/cluster.yml
index f4e7d10e5..61efa4902 100644
--- a/cluster.yml
+++ b/cluster.yml
@@ -14,6 +14,7 @@
     ansible_connection: local
 
 - hosts: localhost
+  gather_facts: false
   tasks:
     - name: deploy warning for non kubeadm
       debug:
-- 
GitLab