We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4312c6c commit 492eaf5Copy full SHA for 492eaf5
Tiltfile
@@ -42,7 +42,7 @@ if "default_registry" in settings:
42
# deploy CAPI
43
def deploy_capi():
44
version = settings.get("capi_version")
45
- capi_uri = "https://storage.googleapis.com/artifacts.k8s-staging-cluster-api.appspot.com/components/{}/cluster-api-components.yaml".format(version)
+ capi_uri = "https://github.com/kubernetes-sigs/cluster-api/releases/download/{}/cluster-api-components.yaml".format(version)
46
cmd = "curl -sSL {} | {} | kubectl apply -f -".format(capi_uri, envsubst_cmd)
47
local(cmd, quiet=True)
48
if settings.get("extra_args"):
0 commit comments