From e8459d311e1c9eb4cb436491cbe68f4e6cf3374b Mon Sep 17 00:00:00 2001 From: Luca Bello <36242061+lucabello@users.noreply.github.com> Date: Wed, 6 Mar 2024 10:13:21 +0100 Subject: [PATCH] remove failing kubectl auth assertion Closes https://github.com/charmed-kubernetes/actions-operator/issues/51. --- src/bootstrap/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bootstrap/index.ts b/src/bootstrap/index.ts index f28205b..ceeda95 100644 --- a/src/bootstrap/index.ts +++ b/src/bootstrap/index.ts @@ -150,7 +150,6 @@ async function microk8s_init(channel, addons, container_registry_url:string) { } await retry_until_rc("microk8s kubectl auth can-i create pods") - await retry_until_rc("microk8s kubectl auth can-i create pods --as=me", 1) return true; }