From 0ec62922d9f191316f990c5f4538dc05f1468b0f Mon Sep 17 00:00:00 2001 From: Chris Richardson Date: Fri, 9 May 2025 09:46:17 -0400 Subject: [PATCH] asd --- .devcontainer/post-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/post-install.sh b/.devcontainer/post-install.sh index 265c43e..dce4f4d 100644 --- a/.devcontainer/post-install.sh +++ b/.devcontainer/post-install.sh @@ -1,16 +1,16 @@ #!/bin/bash set -x -curl -Lo ./kind https://kind.sigs.k8s.io/dl/latest/kind-linux-amd64 +curl -Lo ./kind https://kind.sigs.k8s.io/dl/latest/kind-linux-arm64 chmod +x ./kind mv ./kind /usr/local/bin/kind -curl -L -o kubebuilder https://go.kubebuilder.io/dl/latest/linux/amd64 +curl -L -o kubebuilder https://go.kubebuilder.io/dl/latest/linux/arm64 chmod +x kubebuilder mv kubebuilder /usr/local/bin/ KUBECTL_VERSION=$(curl -L -s https://dl.k8s.io/release/stable.txt) -curl -LO "https://dl.k8s.io/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl" +curl -LO "https://dl.k8s.io/release/$KUBECTL_VERSION/bin/linux/arm64/kubectl" chmod +x kubectl mv kubectl /usr/local/bin/kubectl