-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build!: Automatically add manifests to
v*
tags (#5880)
- Loading branch information
Showing
6 changed files
with
122 additions
and
81 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
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
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ cmd/**/debug | |
hack/**/debug | ||
/argo | ||
/argoexec | ||
changelog | ||
debug.test | ||
git-ask-pass.sh | ||
*.iml | ||
|
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
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
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,71 @@ | ||
# Quick Start | ||
|
||
## What's New? | ||
|
||
Find out on [our blog](https://blog.argoproj.io). | ||
|
||
## Breaking Changes | ||
|
||
If any. | ||
|
||
${breaking_changes} | ||
|
||
## Argo CLI | ||
|
||
### Mac | ||
|
||
Available via `curl` | ||
|
||
```sh | ||
# Download the binary | ||
curl -sLO https://github.com/argoproj/argo/releases/download/${version}/argo-darwin-amd64.gz | ||
|
||
# Unzip | ||
gunzip argo-darwin-amd64.gz | ||
|
||
# Make binary executable | ||
chmod +x argo-darwin-amd64 | ||
|
||
# Move binary to path | ||
mv ./argo-darwin-amd64 /usr/local/bin/argo | ||
|
||
# Test installation | ||
argo version | ||
``` | ||
|
||
### Linux | ||
|
||
Available via `curl` | ||
|
||
```sh | ||
# Download the binary | ||
curl -sLO https://github.com/argoproj/argo/releases/download/${version}/argo-linux-amd64.gz | ||
|
||
# Unzip | ||
gunzip argo-linux-amd64.gz | ||
|
||
# Make binary executable | ||
chmod +x argo-linux-amd64 | ||
|
||
# Move binary to path | ||
mv ./argo-linux-amd64 /usr/local/bin/argo | ||
|
||
# Test installation | ||
argo version | ||
``` | ||
|
||
## Install | ||
|
||
```sh | ||
kubectl create namespace argo | ||
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/${version}/install.yaml | ||
``` | ||
|
||
## Changes | ||
|
||
${changes} | ||
|
||
## Contributors | ||
|
||
${contributors} | ||
|