-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
54 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
black = "24.3.0" | ||
k3d = "5.6.0" | ||
tilt = "0.33.12" | ||
moon = "1.23.4" | ||
tilt = "0.33.12" | ||
|
||
[plugins] | ||
black = "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/main/black/plugin.toml" | ||
k3d = "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/main/k3d/plugin.toml" | ||
moon = "source:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml" | ||
tilt = "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/main/tilt/plugin.toml" | ||
moon = "source:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# k9s plugin | ||
|
||
[k9s](https://k9scli.io) plugin for [proto](https://github.com/moonrepo/proto). | ||
|
||
## Installation | ||
|
||
This is a community plugin and is thus not built-in to proto. In order to use it, first either add it to your global or project-based `.prototools` by running: | ||
|
||
### Global install | ||
|
||
```shell | ||
proto plugin add k9s "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/main/k9s/plugin.toml" --global | ||
proto install k9s | ||
``` | ||
|
||
### Per-project install | ||
|
||
```shell | ||
proto plugin add k9s "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/main/k9s/plugin.toml" | ||
proto pin k9s latest --resolve | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# A TOML plugin for k9s: | ||
# https://moonrepo.dev/docs/k9s/plugins#toml-plugin | ||
|
||
name = "k9s" | ||
type = "cli" | ||
|
||
[platform.linux] | ||
download-file = "k9s_linux_{arch}.tar.gz" | ||
checksum-file = "checksums.txt" | ||
|
||
[platform.macos] | ||
download-file = "k9s_Darwin_{arch}.tar.gz" | ||
checksum-file = "checksums.txt" | ||
|
||
[platform.windows] | ||
download-file = "k9s_Windows_{arch}.zip" | ||
checksum-file = "checksums.txt" | ||
|
||
[install] | ||
download-url = "https://github.com/derailed/k9s/releases/download/v{version}/{download_file}" | ||
|
||
[install.arch] | ||
arm = "arm" | ||
arm64 = "arm64" | ||
x86 = "x86" | ||
x86_64 = "x86_64" | ||
|
||
[resolve] | ||
git-url = "https://github.com/derailed/k9s" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters