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-rc9/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-rc9/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-rc9/manifests/install.yaml
Changes
Since v3.0.0-rc8
- Update manifests to v3.0.0-rc9
- fix(ui): Multiple UI fixes (#5498)
- fix(controller): Fix workflows with retryStrategy left Running after completion (#5497)
- fix(controller): Only set global parameters after workflow validation succeeded to avoid panics (#5477)
- fix: Set daemoned nodes to Succeeded when boudary ends (#5421)
- fix(executor): Ignore non-running Docker kill errors (#5451)
- fix: Fix getStepOrDAGTaskName (#5454)
- fix: Various UI fixes (#5449)
- fix(executor): PNS support artifacts for short-running containers (#5427)
- fix(test): TestWorkflowTemplateRefWithShutdownAndSuspend flakiness (#5441)
- fix(cli): Only append parse result when not nil to avoid panic (#5424)
- fix(ui): Fix link button. Fixes #5429 (#5430)
- fix(executor): Surface error when wait container fails to establish pod watch (#5372)
- fix(test): Fix TestWorkflowTemplateRefWithShutdownAndSuspend flakyness (#5418)
Contributors
- Alex Collins
- Saravanan Balasubramanian
- Simon Behar
- Yuan Tang