13 lines
187 B
YAML
13 lines
187 B
YAML
apiVersion: tekton.dev/v1beta1
|
|
kind: Task
|
|
metadata:
|
|
name: hello
|
|
spec:
|
|
steps:
|
|
- name: hello
|
|
image: debian
|
|
command:
|
|
- echo
|
|
args:
|
|
- "Hello World!"
|