mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-15 04:57:56 +00:00
Merge pull request #877 from marquiz/fixes/e2e
scripts/test-e2e: install kubectl
This commit is contained in:
commit
2b64baef86
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue