Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
- Install

- [Installation with go ](user/install/install_go.md)
- [Installation with a package manager](user/install/install_package_manager.md)
- [Running with docker](user/install/install_docker.md)
- [Installation downloading the binary released](user/install/install_downloading_binary.md)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Suggested change
- [Installation downloading the binary released](user/install/install_downloading_binary.md)
- [Installation from the binary release](user/install/install_downloading_binary.md)

- Ingress
- [Setting up Ingress](user/ingress/ingress.md)
- Gateway API
Expand Down
4 changes: 4 additions & 0 deletions docs/user/install/install_downloading_binary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
### Installing downloading the binary released
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This is a little mixed. How about something like:

Install downloaded binary release

or

Installing a binary release


You can download your desired [binary released](https://github.com/kubernetes-sigs/cloud-provider-kind/releases).
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Suggested change
You can download your desired [binary released](https://github.com/kubernetes-sigs/cloud-provider-kind/releases).
You can download your desired [binary release](https://github.com/kubernetes-sigs/cloud-provider-kind/releases).

Then installed it.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This should have a little more guidance. I think we probably want it to walk through the full process. Something like:

# Download file via something like curl -L -sS -o cloud-provider-kind.tar.gz $URL
tar xvf cloud-provider-kind.tar.gz
sudo install -m 755 cloud-provider-kind /usr/local/bin/

13 changes: 0 additions & 13 deletions docs/user/install/install_go.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,3 @@ can make it available elsewhere if appropriate:
```sh
sudo install ~/go/bin/cloud-provider-kind /usr/local/bin
```

### Installing With A Package Manager

The cloud-provider-kind community has enabled installation via the following package managers.

> [!NOTE]
> The following are community supported efforts. The `cloud-provider-kind` maintainers are not involved in the creation of these packages, and the upstream community makes no claims on the validity, safety, or content of them.

On macOS via Homebrew:

```sh
brew install cloud-provider-kind
```
12 changes: 12 additions & 0 deletions docs/user/install/install_package_manager.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
### Installing With A Package Manager

The cloud-provider-kind community has enabled installation via the following package managers.

> [!NOTE]
> The following are community supported efforts. The `cloud-provider-kind` maintainers are not involved in the creation of these packages, and the upstream community makes no claims on the validity, safety, or content of them.

On macOS via Homebrew:

```sh
brew install cloud-provider-kind
```
Loading