Quick Start
What's New?
Find out in our blog post
Argo CLI
Mac
Available via curl
# Download the binary
curl -sLO https://github.com/argoproj/argo/releases/download/v3.0.0-rc5/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
# Download the binary
curl -sLO https://github.com/argoproj/argo/releases/download/v3.0.0-rc5/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
Argo Controller
kubectl create namespace argo
kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo/v3.0.0-rc5/manifests/install.yaml
Changes
Since v3.0.0-rc5
- Update manifests to v3.0.0-rc5
- cherry-picked fix(controller): shutdownstrategy on running workflow (#5289)
- codegen
- fix: Makefile target (#5313)
- add json/fix.go
- fix: Minor UI fixes (#5325)
- fix: Disallow object names with more than 63 chars (#5324)
- fix(executor): Delegate PNS wait to K8SAPI executor. (#5307)
- fix: Backward compatible workflowTemplateRef from 2.11.x to 2.12.x (#5314)
- feat: Track nodeView tab in URL (#5300)
- fix: Use ScopedLocalStorage instead of direct localStorage (#5301)
- build: Decrease
make codegen
time by (at least) 4 min (#5284) - fix(executor): Enhance PNS executor. Resolves #5251 (#5296)
- fix: Fixes around archiving workflows (#5278)
- fix: Correctly log sub-resource Kubernetes API requests (#5276)
- fix(executor): Fix concurrency error in PNS executor. Fixes #5250 (#5258)
- fix(executor): Fix docker "created" issue. Fixes #5252 (#5249)
- fix(controller): Take labels change into account in SignificantPodChange() (#5253)
- fix(controller): Work-around Golang bug. Fixes #5192 (#5230)
- chore: Pass cron schedule to workflow (#5138)
Contributors
- Alex Collins
- Saravanan Balasubramanian
- Simon Behar
- Yuan Tang