Download Latest Version argo-linux-s390x.gz (73.0 MB)
Email in envelope

Get an email when there's a new version of Argo Workflows

Home / v3.7.0
Name Modified Size InfoDownloads / Week
Parent folder
argo-darwin-arm64.gz 2025-07-23 71.7 MB
argo-linux-amd64.gz 2025-07-23 73.7 MB
argo-linux-ppc64le.gz 2025-07-23 69.5 MB
argo-linux-s390x.gz 2025-07-23 73.0 MB
argo-windows-amd64.exe.gz 2025-07-23 74.4 MB
argo-workflows-cli-checksums.sig 2025-07-23 97 Bytes
argo-workflows-cli-checksums.txt 2025-07-23 700 Bytes
argo-workflows-cosign.pub 2025-07-23 178 Bytes
install.yaml 2025-07-23 120.7 kB
namespace-install.yaml 2025-07-23 118.1 kB
quick-start-minimal.yaml 2025-07-23 137.7 kB
quick-start-mysql.yaml 2025-07-23 139.8 kB
quick-start-postgres.yaml 2025-07-23 139.8 kB
sbom.tar.gz 2025-07-23 267.7 kB
argo-darwin-amd64.gz 2025-07-23 74.1 MB
argo-linux-arm64.gz 2025-07-23 69.7 MB
argo-linux-riscv64.gz 2025-07-23 71.4 MB
README.md 2025-07-15 1.1 kB
v3.7.0 source code.tar.gz 2025-07-15 7.2 MB
v3.7.0 source code.zip 2025-07-15 9.7 MB
Totals: 20 Items   595.5 MB 3

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.7.0/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.7.0/install.yaml
Source: README.md, updated 2025-07-15