1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-14 20:56:42 +00:00

Merge pull request #877 from marquiz/fixes/e2e

scripts/test-e2e: install kubectl
This commit is contained in:
Kubernetes Prow Robot 2022-08-25 11:08:07 -07:00 committed by GitHub
commit 2b64baef86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,11 @@
#!/bin/bash -e
# Install deps
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
export PATH=$PATH:$HOME/bin
curl -o /usr/local/bin/aws-iam-authenticator -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 /usr/local/bin/aws-iam-authenticator
curl -o /usr/local/bin/kubectl -L https://dl.k8s.io/release/v1.24.0/bin/linux/amd64/kubectl
chmod a+x /usr/local/bin/kubectl
# Configure environment