Skip to content

Commit 7c43701

Browse files
committed
tilt: update kubectl used for CAPD
Signed-off-by: Stefan Büringer buringerst@vmware.com
1 parent 691e5c4 commit 7c43701

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tiltfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ providers = {
9393
"internal",
9494
"third_party",
9595
],
96-
"additional_docker_helper_commands": "RUN wget -qO- https://dl.k8s.io/v1.21.2/kubernetes-client-linux-{arch}.tar.gz | tar xvz".format(
97-
arch = os_arch,
96+
"additional_docker_helper_commands": "RUN curl -LO https://dl.k8s.io/release/v1.23.3/bin/linux/{ARCH}/kubectl && chmod +x ./kubectl && mv ./kubectl /usr/bin/kubectl".format(
97+
ARCH = os_arch,
9898
),
9999
"additional_docker_build_commands": """
100-
COPY --from=tilt-helper /go/kubernetes/client/bin/kubectl /usr/bin/kubectl
100+
COPY --from=tilt-helper /usr/bin/kubectl /usr/bin/kubectl
101101
""",
102102
"label": "CAPD",
103103
},

0 commit comments

Comments
 (0)