From 1dfca6c9d53085076843be7122c428164d492f02 Mon Sep 17 00:00:00 2001 From: Facundo Acevedo Date: Sun, 6 Jul 2025 23:03:44 -0300 Subject: [PATCH 1/2] Fix installation instructions and update version --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 15d32da..034c5f1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Kubectl plugin for [asdf](https://github.com/asdf-vm/asdf) version manager ## Install ``` -asdf plugin-add kubectl https://github.com/asdf-community/asdf-kubectl.git +asdf plugin add kubectl https://github.com/asdf-community/asdf-kubectl.git ``` ## Use @@ -19,13 +19,13 @@ The `ASDF_KUBECTL_OVERWRITE_ARCH` variable can be used to override the architect ### Without `ASDF_KUBECTL_OVERWRITE_ARCH`: ``` -% asdf install kubectl 1.18.17 -Downloading kubectl from https://storage.googleapis.com/kubernetes-release/release/v1.18.17/bin/darwin/arm64/kubectl +% asdf install kubectl 1.33.2 +Downloading kubectl from https://storage.googleapis.com/kubernetes-release/release/v1.33.2/bin/darwin/arm64/kubectl ``` ### With `ASDF_KUBECTL_OVERWRITE_ARCH`: ``` -% ASDF_KUBECTL_OVERWRITE_ARCH=amd64 asdf install kubectl 1.18.17 -Downloading kubectl from https://storage.googleapis.com/kubernetes-release/release/v1.18.17/bin/darwin/amd64/kubectl +% ASDF_KUBECTL_OVERWRITE_ARCH=amd64 asdf install 1.33.2 +Downloading kubectl from https://storage.googleapis.com/kubernetes-release/release/v1.33.2/bin/darwin/amd64/kubectl ``` From 7b24770d8d7739e7ff640149fcc23204c6103c05 Mon Sep 17 00:00:00 2001 From: Facundo Acevedo Date: Sun, 6 Jul 2025 23:05:51 -0300 Subject: [PATCH 2/2] Fix installation instructions and update version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 034c5f1..5fdee69 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,6 @@ Downloading kubectl from https://storage.googleapis.com/kubernetes-release/relea ### With `ASDF_KUBECTL_OVERWRITE_ARCH`: ``` -% ASDF_KUBECTL_OVERWRITE_ARCH=amd64 asdf install 1.33.2 +% ASDF_KUBECTL_OVERWRITE_ARCH=amd64 asdf install kubectl 1.33.2 Downloading kubectl from https://storage.googleapis.com/kubernetes-release/release/v1.33.2/bin/darwin/amd64/kubectl ```