Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 720 Bytes

argo-workflows.md

File metadata and controls

26 lines (18 loc) · 720 Bytes

Overview

Argo Workflows is an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes.

Prerequisite

Create the Kubernetes secrets for holding the OIDC client-id and client-secret.

kubectl -n argo create secret generic argo-server-sso \
  --from-literal=client-id=myclientid \
  --from-literal=client-secret=myclientsecret

Verify secrets

kubectl -n argo get secrets argo-server-sso -o jsonpath="{.data.client-id}" | base64 -d
kubectl -n argo get secrets argo-server-sso -o jsonpath="{.data.client-secret}" | base64 -d

Installation

kubectl apply -f ../applications/argo-workflows.yaml