Skip to content

Commit

Permalink
remove pipelineresources from delete_pipeline_resources
Browse files Browse the repository at this point in the history
CRD pipelineresources has been removed in tektoncd#6150. We should also remove
it from delete_pipeline_resources.

Signed-off-by: Yongxuan Zhang yongxuanzhang@google.com
  • Loading branch information
Yongxuanzhang committed Mar 15, 2023
1 parent 258f5df commit 5507a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function uninstall_pipeline_crd_version() {
}

function delete_pipeline_resources() {
for res in pipelineresources tasks clustertasks pipelines taskruns pipelineruns; do
for res in tasks clustertasks pipelines taskruns pipelineruns; do
kubectl delete --ignore-not-found=true ${res}.tekton.dev --all
done
}
Expand Down

0 comments on commit 5507a0e

Please sign in to comment.