Quick Start
What's New?
Find out in our blog post
Migration From v2
v3 is not intended to introduce significant breaking changes for most users. Please read the "Known issues" and "Breaking changes" to determine if you might be impacted.
Known Issues
- Some users are reporting that the UI attempts to open all listing workflows in all namespaces, even if the user does not have access. To work-around - append the correct namespace in the URL.
- OpenShift does not appear to support the coordination API which is mandatory for leader election. #5638 #5306
- Archiving of logs no longer works. #5639
Breaking Changes
chore(server): Enable TLS by default. Resolves #5205 (#5212)
The server now starts with TLS enabled by default if a key is available. This can be disabled using --secure=false
.
If you have an ingress, you may need to add the appropriate annotations:(varies by ingress):
alb.ingress.kubernetes.io/backend-protocol: HTTPS
nginx.ingress.kubernetes.io/backend-protocol: HTTPS
Argo CLI
Mac
Available via curl
# Download the binary
curl -sLO https://github.com/argoproj/argo/releases/download/v3.0.3/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.3/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-workflows/v3.0.3/manifests/install.yaml
Since v3.0.2
- Update manifests to v3.0.3
- fix: certs in non-root
- feat(controller): Allow to disable leader election (#5638)
- fix: Node set updating global output parameter updates global. #5699
- fix(ui): Fix greediness in regex for auth token replacement
- fix(executor): Fix artifactory saving files. Fixes #5733
- fix: change log level to warn level
- fix(executor): Enable PNS executor to better kill sidecars. Fixes #5779
- fix(executor): Fix git password permission. Fixes #5739
- fix: Reset workflow started time to current when retrying workflow. Fixes #5796
- fix(controller): Error template ref exit handlers. Fixes #5835
- fix(ui): dont show cluster workflows in namespaced mode. Closes #5841
- feat(controller): Add config for potential CPU hogs
Contributors
- Alex Collins
- Michael Ruoss
- Radolumbo
- Saravanan Balasubramanian
- Shoubhik Bose
- Wen-Chih (Ryan) Lo
- Yuan Tang
- alexey
- markterm
- tobisinghania