| apiVersion: app | |
| kind: Workflow # new type of k8s spec | |
| metadata: | |
| generateName: hello-world- # name of the workflow spec | |
| spec: | |
| entrypoint: whalesay # invoke the whalesay template | |
| templates: | |
| - name: whalesay # name of the template | |
| container: | |
| image: docker/whalesay | |
| command: [cowsay] | |
| args: ["hello world"] | |
| resources: # limit the resources | |
| limits: | |
| memory: 32Mi | |
| cpu: 100m |