Argo
Installation
brew install argoproj/tap/argokubectl create namespace argo
kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo-workflows/stable/manifests/install.yamlAccess the Argo UI
kubectl -n argo port-forward deployment/argo-server 2746:2746Submit a Workflow
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: hello-world-
spec:
entrypoint: whalesay
templates:
- name: whalesay
container:
image: docker/whalesay
command: [cowsay]
args: ["hello world"]Monitor Workflows
Workflow Lifecycle Management
Create Workflow Templates
Using Parameters in Workflows
Artifacts and Outputs
DAG and Steps
Clean Up
Last updated