From 1fdb9651c090db6fada78301b149dc11299574ba Mon Sep 17 00:00:00 2001 From: Salt Date: Wed, 17 Feb 2021 06:07:36 -0600 Subject: [PATCH] Add skip-pull to k8s roles They absolutely do not work in a pull environment --- playbooks/k8s.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/k8s.yml b/playbooks/k8s.yml index 90175c6..72650df 100755 --- a/playbooks/k8s.yml +++ b/playbooks/k8s.yml @@ -5,11 +5,11 @@ - hosts: k8s roles: - role: docker - tags: [ k8s, docker ] + tags: [ k8s, docker, skip-pull ] # Note: the master and all its nodes must run this role at the same time # in order for the join token to be registered properly. # Failure to do so will result in nodes not joining the cluster. - role: k8s vars: kubernetes_enable_web_ui: yes - tags: [ k8s ] + tags: [ k8s, skip-pull ]