Skip to content

Instantly share code, notes, and snippets.

@anderseknert
Created October 13, 2020 08:48
Show Gist options
  • Save anderseknert/bafbe1619884124d66011d673b498443 to your computer and use it in GitHub Desktop.
Save anderseknert/bafbe1619884124d66011d673b498443 to your computer and use it in GitHub Desktop.
Argo test
apiVersion: argoproj.io/v1alpha1
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: alpine:3.7
command: [echo, "Testing"]
resources: # limit the resources
limits:
memory: 32Mi
cpu: 100m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment