initial commit
This commit is contained in:
14
dev/tekton/examples/hello-world/task-hello.yaml
Executable file
14
dev/tekton/examples/hello-world/task-hello.yaml
Executable file
@@ -0,0 +1,14 @@
|
||||
apiVersion: tekton.dev/v1beta1
|
||||
kind: Task
|
||||
metadata:
|
||||
name: hello
|
||||
spec:
|
||||
params:
|
||||
- name: username
|
||||
type: string
|
||||
steps:
|
||||
- name: echo
|
||||
image: alpine
|
||||
script: |
|
||||
#!/bin/sh
|
||||
echo "Hello $(params.username)!"
|
||||
Reference in New Issue
Block a user