mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 02:14:24 +08:00
10 lines
331 B
Bash
10 lines
331 B
Bash
#!/bin/bash
|
|
|
|
# Download kubectl binary
|
|
curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -L -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl"
|
|
|
|
# Make the kubectl binary executable
|
|
chmod +x kubectl
|
|
|
|
# Move the binary in to PATH
|
|
sudo mv kubectl /usr/local/bin/ |