Last active
June 16, 2020 06:20
-
-
Save pritidesai/8dc21d25f19f91231484c41cbc46ada7 to your computer and use it in GitHub Desktop.
This file contains 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/v1beta1 | |
kind: Pipeline | |
metadata: | |
name: pipeline-with-pipeline-with-task-to-echo-good-morning | |
spec: | |
tasks: | |
- name: echo-good-morning | |
metadata: | |
labels: | |
custom1: value1 | |
custom2: value2 | |
custom3: value3 | |
annotations: | |
acustom1: value1 | |
acustom2: value2 | |
taskSpec: | |
steps: | |
- name: echo | |
image: ubuntu | |
script: | | |
#!/usr/bin/env bash | |
echo "Good Morning!" | |
--- | |
apiVersion: tekton.dev/v1beta1 | |
kind: PipelineRun | |
metadata: | |
name: pipelinerun-with-pipeline-with-task-to-echo-good-morning | |
spec: | |
pipelineRef: | |
name: pipeline-with-pipeline-with-task-to-echo-good-morning | |
Author
pritidesai
commented
Jun 16, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment