Skip to content

Commit

Permalink
Merge pull request #6121 from sbueringer/pr-update-capd-tilt-build
Browse files Browse the repository at this point in the history
🌱 tilt: update kubectl used for CAPD
  • Loading branch information
k8s-ci-robot authored Feb 14, 2022
2 parents cca725c + 7c43701 commit f8d8067
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ providers = {
"internal",
"third_party",
],
"additional_docker_helper_commands": "RUN wget -qO- https://dl.k8s.io/v1.21.2/kubernetes-client-linux-{arch}.tar.gz | tar xvz".format(
arch = os_arch,
"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(
ARCH = os_arch,
),
"additional_docker_build_commands": """
COPY --from=tilt-helper /go/kubernetes/client/bin/kubectl /usr/bin/kubectl
COPY --from=tilt-helper /usr/bin/kubectl /usr/bin/kubectl
""",
"label": "CAPD",
},
Expand Down

0 comments on commit f8d8067

Please sign in to comment.