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: PipelineRun | |
metadata: | |
name: pipelinerun-with-pipeline-with-task-to-echo-good-morning | |
spec: | |
pipelineSpec: | |
tasks: | |
- name: echo-good-morning | |
metadata: | |
labels: |
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 |
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: Task | |
metadata: | |
name: task-echo-good-morning | |
spec: | |
steps: | |
- name: echo | |
image: ubuntu | |
script: | | |
#!/usr/bin/env bash |
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: Task | |
metadata: | |
name: failure-task | |
spec: | |
steps: | |
- name: fail | |
image: ubuntu | |
script: exit 1 | |
--- |
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: Task | |
metadata: | |
name: task-echo-good-morning | |
spec: | |
steps: | |
- name: echo | |
image: ubuntu | |
script: | | |
#!/usr/bin/env bash |
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: Task | |
metadata: | |
name: task-echo-good-morning | |
spec: | |
steps: | |
- name: echo | |
image: ubuntu | |
script: | | |
#!/usr/bin/env bash |
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: PipelineRun | |
metadata: | |
name: pipelinerun-with-taskspec-to-echo-good-morning | |
spec: | |
pipelineSpec: | |
tasks: | |
- name: echo-good-morning | |
taskSpec: | |
steps: |
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
2020/06/05 23:30:41 Registering 4 clients | |
2020/06/05 23:30:41 Registering 4 informer factories | |
2020/06/05 23:30:41 Registering 8 informers | |
2020/06/05 23:30:41 Registering 2 controllers | |
{"level":"info","caller":"logging/config.go:108","msg":"Successfully created the logger."} | |
{"level":"info","caller":"logging/config.go:109","msg":"Logging level set to info"} | |
{"level":"info","logger":"tekton","caller":"profiling/server.go:59","msg":"Profiling enabled: false","commit":"ac439fb"} | |
{"level":"info","logger":"tekton","caller":"sharedmain/main.go:199","msg":"tekton will not run in leader-elected mode","commit":"ac439fb"} | |
{"level":"info","logger":"tekton.taskrun-controller","caller":"taskrun/controller.go:93","msg":"Setting up event handlers","commit":"ac439fb","knative.dev/controller":"taskrun-controller"} | |
{"level":"info","logger":"tekton.pipeline-controller","caller":"pipelinerun/controller.go:90","msg":"Setting up event handlers","commit":"ac439fb","knative.dev/controller":"pipeline-controller"} |
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
2020/06/05 22:29:00 Registering 4 clients | |
2020/06/05 22:29:00 Registering 4 informer factories | |
2020/06/05 22:29:00 Registering 8 informers | |
2020/06/05 22:29:00 Registering 2 controllers | |
{"level":"info","caller":"logging/config.go:108","msg":"Successfully created the logger."} | |
{"level":"info","caller":"logging/config.go:109","msg":"Logging level set to info"} | |
{"level":"info","logger":"tekton","caller":"profiling/server.go:59","msg":"Profiling enabled: false","commit":"ac439fb"} | |
{"level":"info","logger":"tekton","caller":"sharedmain/main.go:199","msg":"tekton will not run in leader-elected mode","commit":"ac439fb"} | |
{"level":"info","logger":"tekton.taskrun-controller","caller":"taskrun/controller.go:93","msg":"Setting up event handlers","commit":"ac439fb","knative.dev/controller":"taskrun-controller"} | |
{"level":"info","logger":"tekton.pipeline-controller","caller":"pipelinerun/controller.go:90","msg":"Setting up event handlers","commit":"ac439fb","knative.dev/controller":"pipeline-controller"} |
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: Task | |
metadata: | |
name: failure-task | |
spec: | |
steps: | |
- name: fail | |
image: ubuntu | |
script: exit 1 | |
--- |