Installing Skaffold
Note
To keep Skaffold up to date, update checks are made to Google servers to see if a new version of Skaffold is available. You can turn this update check off by following these instructions. Your use of this software is subject to the Google Privacy PolicyStable binary
For the latest stable release download and place it in your PATH:
https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
Run these commands to download and place the binary in your /usr/local/bin folder:
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
chmod +x skaffold
sudo mv skaffold /usr/local/binLatest bleeding edge binary
For the latest bleeding edge build, download and place it in your PATH:
https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
Run these commands to download and place the binary in your /usr/local/bin folder:
curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
chmod +x skaffold
sudo mv skaffold /usr/local/binHomebrew
brew install skaffoldStable binary
For the latest stable release download and place it in your PATH:
https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64
Run these commands to download and place the binary in your /usr/local/bin folder:
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64
chmod +x skaffold
sudo mv skaffold /usr/local/binBleeding edge binary
For the latest bleeding edge build, download and place it in your PATH:
https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64
Run these commands to download and place the binary in your /usr/local/bin folder:
curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64
chmod +x skaffold
sudo mv skaffold /usr/local/binChocolatey
choco install skaffoldStable binary
For the latest stable release download and place it in your PATH as skaffold.exe:
https://storage.googleapis.com/skaffold/releases/latest/skaffold-windows-amd64.exe
Bleeding edge binary
For the latest bleeding edge build, download and place it in your PATH as skaffold.exe:
https://storage.googleapis.com/skaffold/builds/latest/skaffold-windows-amd64.exe
Stable binary
For the latest stable release, you can use:
docker run gcr.io/k8s-skaffold/skaffold:latest skaffold <command>
Bleeding edge binary
For the latest bleeding edge build:
docker run gcr.io/k8s-skaffold/skaffold:edge skaffold <command>