Files
kubernetes/dev/tekton/examples/hello-world/task-goodbye.yaml
2025-11-23 18:58:51 +01:00

15 lines
248 B
YAML
Executable File

apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: goodbye
spec:
params:
- name: username
type: string
steps:
- name: goodbye
image: ubuntu
script: |
#!/bin/bash
echo "Goodbye $(params.username)!"