flokain
flokain
**Environment** VS Code version: 1.65.2 OS: linux Extension version: 1.0.1 **Description** The Extension does not list any tasks in the search. (internet is accessible 
# Expected Behavior if the tasks of a pipelineRun time out because of the timeout.tasks parameter, the reason for the PipelinRun satus should be `PipelineRunTimeout`. # Actual Behavior status reason...
### Feature request refactor `default-timeout-minutes` to the following parameters in [config-defaults](https://github.com/tektoncd/pipeline/blob/release-v0.54.x/config/config-defaults.yaml). ``` default-timeout-pipeline-minutes: "40" default-timeout-tasks-minutes: "40" default-timeout-finally-minutes: "20" ``` ``` timeouts: pipeline: "0h0m60s" tasks: "0h0m40s" finally: "0h0m20s" ``` ### Use...
There is a bug with nerdctl where nerdctl inspect .... returns invalid json in form of [{container1}][{container2}]... instead of [{container1},{container2}] its addressed in this bugissue on nerdctl https://github.com/containerd/nerdctl/issues/3006 By the...
# Expected Behavior as documented in merged PR https://github.com/tektoncd/pipeline/pull/6862 taskRunTemplate.podTemplate.tolerations and taskRunSpec[].podTemplate.tolerations get merged. ``` apiVersion: tekton.dev/v1 kind: PipelineRun spec: taskRunSpecs: - pipelineTaskName: build-arm64-image podTemplate: tolerations: - effect: PreferNoSchedule key:...