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-rc4/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-rc4/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-rc4/manifests/install.yaml
Changes
Since v3.0.0-rc3
- Update manifests to v3.0.0-rc4
- feat(controller): Allow to modify time related configurations in leader election (#5234)
- feat(controller): Reused existing workflow informer. Resolves #5202 (#5204)
- fix(controller): Leader lease shared name improvments (#5218)
- fix: Do not display pagination warning when there is no pagination (#5221)
- fix: Checkbox is not clickable (#5213)
- fix(controller): Leader Lease Shared Name (#5214)
- fix: Ensure whitespaces is allowed between name and bracket (#5176)
- fix: Consder templateRef when filtering by tag (#5190)
- fix: Propagate URL changes to react state (#5188)
- fix(controller): Fix timezone support. Fixes #5181 (#5182)
Contributors
- Alex Collins
- Simon Behar
- Yuan Tang
- Zach Aller