From 3388986d1e02d40b9fd158b24126f84217621b37 Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Thu, 20 Oct 2022 12:08:22 +0200 Subject: [PATCH] fix syntax --- linux/k3s/master/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/k3s/master/tasks/main.yml b/linux/k3s/master/tasks/main.yml index 52c19f2..fe361ca 100644 --- a/linux/k3s/master/tasks/main.yml +++ b/linux/k3s/master/tasks/main.yml @@ -1,4 +1,4 @@ - name: run cluster init on first node - shell: "curl -sfL https://get.k3s.io | K3S_TOKEN={{ k3s_secret }}" sh -s - server --cluster-init" + shell: "curl -sfL https://get.k3s.io | K3S_TOKEN={{ k3s_secret }} sh -s - server --cluster-init" become: yes when: k3s_bootstrap