Files
ollama-plus/manifests/argo-templates/workflowtemplate-hello.yaml
T

18 lines
380 B
YAML
Raw Normal View History

2025-09-13 11:44:13 -04:00
apiVersion: argoproj.io/v1alpha1
kind: WorkflowTemplate
metadata:
name: hello-template
namespace: argo
spec:
entrypoint: run
arguments:
parameters:
- { name: message, value: "hello from argo" }
templates:
- name: run
container:
image: alpine:3.19
command: ["/bin/sh","-lc"]
args: ["echo \"{{workflow.parameters.message}}\""]