Created
October 13, 2020 08:48
-
-
Save anderseknert/bafbe1619884124d66011d673b498443 to your computer and use it in GitHub Desktop.
Argo test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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