Files
tekton-demo/hello-task.yaml
2025-08-04 01:44:57 +00:00

14 lines
235 B
YAML

apiVersion: tekton.dev/v1
kind: Task
metadata:
name: hello-task
namespace: tekton-demo
spec:
steps:
- name: echo-hello
image: ubuntu:20.04
script: |
#!/bin/bash
echo "✅ Hello from Tekton Task!"