blob: 2ae250cb4b2d4e30c21687dae30d457cf18ac4ce [file] [log] [blame]
giolekvafb52e0d2020-04-23 22:52:13 +04001apiVersion: app
2kind: Workflow # new type of k8s spec
3metadata:
4 generateName: hello-world- # name of the workflow spec
5spec:
6 entrypoint: whalesay # invoke the whalesay template
7 templates:
8 - name: whalesay # name of the template
9 container:
10 image: docker/whalesay
11 command: [cowsay]
12 args: ["hello world"]
13 resources: # limit the resources
14 limits:
15 memory: 32Mi
16 cpu: 100m