JeromeJu

Results 156 comments of JeromeJu

TODO: implement the rest of the fields after v1 release

The test files in v1 would be moved to v1_test in a separated PR from https://github.com/tektoncd/pipeline/pull/5219.

### Cases: Utilized [experimental/wait-task controller](https://github.com/tektoncd/experimental/tree/main/wait-task) with apiVersion `v1beta1`. - Succeeded - Succeeded after 10s wait time ``` apiVersion: tekton.dev/v1beta1 kind: Pipeline metadata: name: custom-task-pipeline namespace: foo spec: tasks: - name:...

The TaskRun way of avoiding the duplicates [pipeline/pkg/pod/pod.go](https://github.com/tektoncd/pipeline/blob/main/pkg/pod/pod.go/#L303): ``` podNameSuffix := "-pod" if taskRunRetries := len(taskRun.Status.RetriesStatus); taskRunRetries > 0 { podNameSuffix = fmt.Sprintf("%s-retry%d", podNameSuffix, taskRunRetries) } ```

This comment updates the current progress: - kubetest as dependency - when run locally `kubetest` would need to be installed. I think this happened as upgrade tests script is ran...

- When disabling [initialize](https://github.com/tektoncd/pipeline/blob/main/test/e2e-tests-upgrade.sh#L32), the test could run locally. - When set Previous version at v0.40.2 and deploy on the current devel, the following error occurred when upgrading to the...

Current update: - Trying to debug ``` /usr/local/bin/runner.sh: line 120: ./test/e2e-tests-upgrade.sh: No such file or directory ``` Previous assumptions: - might resolve with the kind cluster change Approaches to this...