github.com/argoproj/argo-events@v1.9.1/examples/tutorials/03-trigger-sources/trigger-store.yaml (about) 1 apiVersion: v1 2 kind: ConfigMap 3 metadata: 4 name: trigger-store 5 data: 6 workflow: |- 7 apiVersion: argoproj.io/v1alpha1 8 kind: Workflow 9 metadata: 10 generateName: hello-world- 11 namespace: argo-events 12 spec: 13 entrypoint: whalesay 14 serviceAccountName: argo-events 15 templates: 16 - name: whalesay 17 container: 18 image: docker/whalesay:latest 19 command: [cowsay] 20 args: ["hello world"]