Created
March 5, 2020 20:40
-
-
Save mcasperson/3ab17875de4a8eab29d23df06df4a281 to your computer and use it in GitHub Desktop.
Tekton Task
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: tekton.dev/v1alpha1 | |
| kind: Task | |
| metadata: | |
| name: echo-hello-world | |
| spec: | |
| steps: | |
| - name: echo | |
| image: ubuntu | |
| command: | |
| - echo | |
| args: | |
| - "Hello World" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment