Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
argo-workflows-cosign.pub | 2025-06-04 | 178 Bytes | |
argo-darwin-amd64.gz | 2025-06-04 | 70.5 MB | |
argo-darwin-arm64.gz | 2025-06-04 | 67.9 MB | |
argo-linux-amd64.gz | 2025-06-04 | 70.1 MB | |
argo-linux-arm64.gz | 2025-06-04 | 66.3 MB | |
argo-linux-ppc64le.gz | 2025-06-04 | 66.1 MB | |
argo-linux-riscv64.gz | 2025-06-04 | 67.9 MB | |
argo-linux-s390x.gz | 2025-06-04 | 69.5 MB | |
argo-windows-amd64.exe.gz | 2025-06-04 | 70.9 MB | |
argo-workflows-cli-checksums.sig | 2025-06-04 | 97 Bytes | |
argo-workflows-cli-checksums.txt | 2025-06-04 | 700 Bytes | |
install.yaml | 2025-06-04 | 120.0 kB | |
namespace-install.yaml | 2025-06-04 | 117.4 kB | |
quick-start-minimal.yaml | 2025-06-04 | 136.7 kB | |
quick-start-mysql.yaml | 2025-06-04 | 138.3 kB | |
quick-start-postgres.yaml | 2025-06-04 | 138.2 kB | |
sbom.tar.gz | 2025-06-04 | 315.7 kB | |
README.md | 2025-06-04 | 1.1 kB | |
v3.6.10 source code.tar.gz | 2025-06-04 | 6.9 MB | |
v3.6.10 source code.zip | 2025-06-04 | 9.4 MB | |
Totals: 20 Items | 566.4 MB | 0 |
Quick Start
What's New?
Find out on our blog and changelog.
Breaking Changes and Known Issues
Check the upgrading guide and search for existing issues on GitHub.
Installation
CLI
Mac / Linux
Available via curl
:::bash
# Detect OS
ARGO_OS="darwin"
if [[ uname -s != "Darwin" ]]; then
ARGO_OS="linux"
fi
# Download the binary
curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v3.6.10/argo-$ARGO_OS-amd64.gz"
# Unzip
gunzip "argo-$ARGO_OS-amd64.gz"
# Make binary executable
chmod +x "argo-$ARGO_OS-amd64"
# Move binary to path
mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo
# Test installation
argo version
Controller and Server
:::bash
kubectl create namespace argo
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.6.10/install.yaml