Skip to content

Update docs with darwin/arm64 binaries #5287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Feb 5, 2021
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 29 additions & 4 deletions docs/content/en/docs/install/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,46 +19,71 @@ Your use of this software is subject to the [Google Privacy Policy](https://poli

{{% tabs %}}
{{% tab "LINUX" %}}
The latest **stable** binary can be found here:
The latest **stable** binaries can be found here:

https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-arm64

Simply download it and add it to your `PATH`. Or, copy+paste this command in your terminal:
Simply download the appropriate binary and add it to your `PATH`. Or, copy+paste this command in your terminal:

```bash
# For Linux AMD64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 && \
sudo install skaffold /usr/local/bin/

# For Linux ARM64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-arm && \
sudo install skaffold /usr/local/bin/
```
```
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like there's a problem on the install page, I imagine from not putting a line in between the start of the other monospace block http://34.94.250.235:1313/docs/install/

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh jeepers. That'll teach me for making a simple change without verifying.


We also release a **bleeding edge** build, built from the latest commit:

https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64
https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-arm64

```bash
# For Linux on AMD64
curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-amd64 && \
sudo install skaffold /usr/local/bin/

# For Linux on ARM64
curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-linux-arm64 && \
sudo install skaffold /usr/local/bin/
```

{{% /tab %}}

{{% tab "MACOS" %}}

The latest **stable** binary can be found here:
The latest **stable** binaries can be found here:

https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64
https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-arm64

Simply download it and add it to your `PATH`. Or, copy+paste this command in your terminal:
Simply download the appropriate binary and add it to your `PATH`. Or, copy+paste this command in your terminal:

```bash
# For macOS on AMD64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64 && \
sudo install skaffold /usr/local/bin/

# For macOS on ARM64
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-darwin-amd64 && \
sudo install skaffold /usr/local/bin/
```

We also release a **bleeding edge** build, built from the latest commit:

https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64
https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-arm64

```bash
# For macOS on AMD64
curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64 && \
sudo install skaffold /usr/local/bin/

# For macOS on ARM64
curl -Lo skaffold https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-amd64 && \
sudo install skaffold /usr/local/bin/
```
Expand Down