You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(install-script): pin aws-iam-authenticator version to v0.6.14
This change will hard code the version of aws-iam-authenticator binary within the install-kconnect script until the issue with the aws-iam-authenticator GitHub repo is fixed. It looks like the latest release of aws-iam-authenticator failed to be release properly, and waiting for one of the maintainers to fix the release. kubernetes-sigs/aws-iam-authenticator#720
Signed-off-by: Casale, Robert <[email protected]>
latest_azure_cli_release_tag=$(curl -fsSLI -o /dev/null -w %{url_effective} https://github.com/Azure/azure-cli/releases/latest | sed 's#.*/##')
15
15
latest_oidc_login_release_tag=$(curl -fsSLI -o /dev/null -w %{url_effective} https://github.com/int128/kubelogin/releases/latest | sed 's#.*/##')
16
16
@@ -52,15 +52,15 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
52
52
kubelogin_url=$(echo "https://github.com/Azure/kubelogin/releases/download/TAG/kubelogin-linux-amd64.zip"| sed "s/TAG/$latest_kubelogin_release_tag/")
53
53
azure_url="https://aka.ms/InstallAzureCli"
54
54
oidc_login_url=$(echo "https://github.com/int128/kubelogin/releases/download/TAG/kubelogin_linux_ARCH.zip"| sed "s/TAG/$latest_oidc_login_release_tag/"| sed "s/ARCH/$arch/")
@@ -94,7 +94,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
94
94
chmod +x kubectl-oidc_login
95
95
96
96
elif [[ "$OSTYPE"=="darwin"* ]];then
97
-
97
+
98
98
# Mac OSX
99
99
kconnect_url=$(echo "https://github.com/fidelity/kconnect/releases/download/TAG/kconnect_macos_amd64.tar.gz"| sed "s/TAG/$latest_kconnect_release_tag/")
100
100
kubectl_url=$(echo "https://dl.k8s.io/release/TAG/bin/darwin/amd64/kubectl"| sed "s/TAG/$latest_kubectl_release_tag/")
kubelogin_url=$(echo "https://github.com/Azure/kubelogin/releases/download/TAG/kubelogin-darwin-amd64.zip"| sed "s/TAG/$latest_kubelogin_release_tag/")
oidc_login_url=$(echo "https://github.com/int128/kubelogin/releases/download/TAG/kubelogin_darwin_amd64.zip"| sed "s/TAG/$latest_oidc_login_release_tag/")
kconnect_url=$(echo "https://github.com/fidelity/kconnect/releases/download/TAG/kconnect_windows_amd64.zip"| sed "s/TAG/$latest_kconnect_release_tag/")
150
150
kubectl_url=$(echo "https://dl.k8s.io/release/TAG/bin/windows/amd64/kubectl.exe"| sed "s/TAG/$latest_kubectl_release_tag/")
151
151
helm_url=$(echo "https://get.helm.sh/helm-TAG-windows-amd64.zip"| sed "s/TAG/$latest_helm_release_tag/")
azure_url=$(echo "https://github.com/Azure/azure-cli/releases/download/TAG/TAG.msi"| sed "s/TAG/$latest_azure_cli_release_tag/g")
155
155
oidc_login_url=$(echo "https://github.com/int128/kubelogin/releases/download/TAG/kubelogin_windows_amd64.zip"| sed "s/TAG/$latest_oidc_login_release_tag/")
0 commit comments