github argoproj/argo-workflows v2.12.7

latest releases: v3.5.6, v3.5.5, v3.5.4...
3 years ago

Quick Start

What's New?

Find out in our blog post

This release fixes Go modules for the Argo Workflows repo! Our module is now specified as v2 (github.com/argoproj/argo/v2/) in our types and module. go get github.com/argoproj/argo/v2/ should now work as expected!

Argo CLI

Mac

Available via curl

# Download the binary
curl -sLO https://github.com/argoproj/argo/releases/download/v2.12.7/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/v2.12.7/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/v2.12.7/manifests/install.yaml

Changes

  • Update manifests to v2.12.7
  • feat: Support retry on transient errors during executor status checking (#4946)
  • feat(server): Add Prometheus metrics. Closes #4751 (#4952)
  • chore: Remove self-referential replace directive in go.mod (#4959)
  • chore: Set Go mod to /v2 (#4916)

Contributors

  • Alex Collins
  • Simon Behar
  • Yuan Tang

Don't miss a new argo-workflows release

NewReleases is sending notifications on new releases.