-
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
1 parent
efb410e
commit 55e3e3a
Showing
2 changed files
with
48 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# argocd plugin | ||
|
||
[argocd](https://argocdcli.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 argocd "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/main/argocd/plugin.toml" --global | ||
proto install argocd | ||
``` | ||
|
||
### Per-project install | ||
|
||
```shell | ||
proto plugin add argocd "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/main/argocd/plugin.toml" | ||
proto pin argocd 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,27 @@ | ||
# A TOML plugin for argocd: | ||
# https://moonrepo.dev/docs/argocd/plugins#toml-plugin | ||
|
||
name = "argocd" | ||
type = "cli" | ||
|
||
[platform.linux] | ||
download-file = "argocd-linux-{arch}" | ||
checksum-file = "cli_checksums.txt" | ||
|
||
[platform.macos] | ||
download-file = "argocd-darwin-{arch}" | ||
checksum-file = "cli_checksums.txt" | ||
|
||
[platform.windows] | ||
download-file = "argocd-windows-{arch}.exe" | ||
checksum-file = "cli_checksums.txt" | ||
|
||
[install] | ||
download-url = "https://github.com/argoproj/argo-cd/releases/download/v{version}/{download_file}" | ||
|
||
[install.arch] | ||
aarch64 = "arm64" | ||
x86_64 = "amd64" | ||
|
||
[resolve] | ||
git-url = "https://github.com/argoproj/argo-cd" |