You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
321 B
14 lines
321 B
#!/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 |