From dd5fc7a3cf226e9074bf4c56641deb0bdfed99e8 Mon Sep 17 00:00:00 2001 From: Fabrizio Sestito Date: Mon, 29 Jul 2024 13:57:55 +0200 Subject: [PATCH] chore: remove cert-manager installation from Tiltfile Signed-off-by: Fabrizio Sestito --- Tiltfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tiltfile b/Tiltfile index a8f23163..30c5eb3d 100644 --- a/Tiltfile +++ b/Tiltfile @@ -9,10 +9,6 @@ kubectl_cmd = "kubectl" if str(local("command -v " + kubectl_cmd + " || true", quiet = True)) == "": fail("Required command '" + kubectl_cmd + "' not found in PATH") -# Install cert manager -load('ext://cert_manager', 'deploy_cert_manager') -deploy_cert_manager() - # Create the kubewarden namespace # This is required since the helm() function doesn't support the create_namespace flag load('ext://namespace', 'namespace_create')