功能请求: 在父运行开始后删除解决方案请求
作者: aThorp96创建于 2026年9月3日更新于 2026年9月11日
标签kind/feature
For example, this pipelineRun references this Pipeline using the git resolver, and that Pipeline in turn references this Task using the git resolver. After creating this pipelineRun and waiting for it to complete, we can get the pipelinerun and child objects' yaml to estimate its etcd footprint in bytes:
$ kubectl get $(
kubectl get taskruns,pods,resolutionrequests,customruns,pipelineruns,statefulsets,pvc -n default -o json | jq -r '.items[] | select(.metadata.name == "git-resolver-kc99w" or ([.metadata.ownerReferences[]? | .name] | any(. | startswith("git-resolver-kc99w")))) | "\(.kind)/\(.metadata.name)"' \
)
NAME SUCCEEDED REASON STARTTIME COMPLETIONTIME
taskrun.tekton.dev/git-resolver-kc99w-task1 True Succeeded 2m53s 2m45s
NAME READY STATUS RESTARTS AGE
pod/git-resolver-kc99w-task1-pod 0/1 Completed 0 2m53s
NAME OWNERKIND OWNER SUCCEEDED REASON STARTTIME ENDTIME
resolutionrequest.resolution.tekton.dev/git-24f136bea5d40ab083b1c0785fca63d1 PipelineRun git-resolver-kc99w True 2026-09-03T17:36:07Z 2026-09-03T17:36:09Z
resolutionrequest.resolution.tekton.dev/git-2f4462c67e827a56cae2c16dcb5c7417 PipelineRun git-resolver-kc99w True 2026-09-03T17:36:01Z 2026-09-03T17:36:07Z
NAME SUCCEEDED REASON STARTTIME COMPLETIONTIME
…内容来源: tektoncd/pipeline