1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-15 21:08:23 +00:00

scripts/test-e2e: update aws-iam-authenticator to v0.5.7

We need the latest version to support client.authentication.k8s.io/v1.
The previous version we used only supported v1alpha1 which was dropped
in K8s v1.24.
This commit is contained in:
Markus Lehtonen 2022-06-28 16:43:04 +03:00
parent 3b4c1b1793
commit a7835a060f

View file

@ -1,7 +1,7 @@
#!/bin/bash -e #!/bin/bash -e
# Install deps # Install deps
curl -o $HOME/bin/aws-iam-authenticator --create-dirs https://amazon-eks.s3-us-west-2.amazonaws.com/1.10.3/2018-07-26/bin/linux/amd64/aws-iam-authenticator curl -o $HOME/bin/aws-iam-authenticator --create-dirs -L https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v0.5.7/aws-iam-authenticator_0.5.7_linux_amd64
chmod a+x $HOME/bin/aws-iam-authenticator chmod a+x $HOME/bin/aws-iam-authenticator
export PATH=$PATH:$HOME/bin export PATH=$PATH:$HOME/bin