| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| argo-darwin-amd64.gz | 2026-07-07 | 74.9 MB | |
| argo-darwin-arm64.gz | 2026-07-07 | 71.7 MB | |
| argo-linux-amd64.gz | 2026-07-07 | 71.1 MB | |
| argo-linux-arm64.gz | 2026-07-07 | 66.2 MB | |
| argo-linux-ppc64le.gz | 2026-07-07 | 66.6 MB | |
| argo-linux-riscv64.gz | 2026-07-07 | 68.3 MB | |
| argo-linux-s390x.gz | 2026-07-07 | 70.2 MB | |
| argo-windows-amd64.exe.gz | 2026-07-07 | 71.9 MB | |
| argo-workflows-cli-checksums.sig | 2026-07-07 | 97 Bytes | |
| argo-workflows-cli-checksums.txt | 2026-07-07 | 700 Bytes | |
| argo-workflows-cosign.pub | 2026-07-07 | 178 Bytes | |
| install.yaml | 2026-07-07 | 11.1 MB | |
| namespace-install.yaml | 2026-07-07 | 11.1 MB | |
| quick-start-minimal.yaml | 2026-07-07 | 11.1 MB | |
| quick-start-mysql.yaml | 2026-07-07 | 11.1 MB | |
| quick-start-postgres.yaml | 2026-07-07 | 11.1 MB | |
| sbom.tar.gz | 2026-07-07 | 271.4 kB | |
| README.md | 2026-07-07 | 1.1 kB | |
| v4.0.7 source code.tar.gz | 2026-07-07 | 10.4 MB | |
| v4.0.7 source code.zip | 2026-07-07 | 11.8 MB | |
| Totals: 20 Items | 639.1 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/v4.0.7/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/v4.0.7/install.yaml