Files
service-catalog/charts/kubeflow/tests/gh-actions/install_argo_cli.sh
T
2025-01-13 02:31:27 +00:00

14 lines
321 B
Bash
Executable File

#!/bin/bash
set -e
kubectl create namespace argo
# Download the binary
curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.1.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