Skip to content

Commit e3ae8cf

Browse files
authored
Merge pull request #548 from prad9192/upgrade-tekton-latest
Upgraded Tekton Pipeline from v0.61.0 to v1.6.0 LTS
2 parents cfbb719 + a1f633d commit e3ae8cf

56 files changed

Lines changed: 1794 additions & 2116 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

cmd/pipeline/controller.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ type controller struct {
6767
pjLister prowjoblisters.ProwJobLister
6868
pjInformer cache.SharedIndexInformer
6969

70-
workqueue workqueue.RateLimitingInterface
70+
workqueue workqueue.TypedRateLimitingInterface[any]
7171

7272
recorder record.EventRecorder
7373

@@ -83,7 +83,7 @@ type controllerOptions struct {
8383
pipelineConfigs map[string]pipelineConfig
8484
totURL string
8585
prowConfig config.Getter
86-
rl workqueue.RateLimitingInterface
86+
rl workqueue.TypedRateLimitingInterface[any]
8787
}
8888

8989
// pjNamespace returns the prow namespace from configuration

cmd/pipeline/controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func (r *fakeReconciler) cancelPipelineRun(context string, pr *pipelinev1.Pipeli
164164
}
165165

166166
type fakeLimiter struct {
167-
workqueue.RateLimitingInterface
167+
workqueue.TypedRateLimitingInterface[any]
168168
added string
169169
}
170170

config/prow/cluster/prowjob-crd/prowjob_customresourcedefinition.yaml

Lines changed: 411 additions & 227 deletions
Large diffs are not rendered by default.

go.mod

Lines changed: 119 additions & 113 deletions
Large diffs are not rendered by default.

go.sum

Lines changed: 269 additions & 251 deletions
Large diffs are not rendered by default.

hack/make-rules/verify/go-deps.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ make_temp_repo_copy() {
4545
\( \
4646
-type d -path "./.git" -o \
4747
-type d -path "./_bin" -o \
48-
-type d -path "./_output" \
49-
-type d -path "./bazel-bin" \
50-
-type d -path "./bazel-out" \
51-
-type d -path "./bazel-test-infra" \
52-
-type d -path "./bazel-testlogs" \
48+
-type d -path "./_output" -o \
49+
-type d -path "./bazel-bin" -o \
50+
-type d -path "./bazel-out" -o \
51+
-type d -path "./bazel-test-infra" -o \
52+
-type d -path "./bazel-testlogs" -o \
53+
-type d -path "./.python_virtual_env" \
5354
\) -prune -o \
5455
-exec bash -c 'cp -r "${0}" "${1}/${0}" >/dev/null 2>&1' {} "${TMP_REPO}" \;
5556
}
@@ -73,6 +74,7 @@ main() {
7374
-x "bazel-out" \
7475
-x "bazel-test-infra" \
7576
-x "bazel-testlogs" \
77+
-x ".python_virtual_env" \
7678
"${REPO_ROOT}" "${TMP_REPO}" 2>/dev/null || true)
7779
if [[ -n "${diff}" ]]; then
7880
echo "unexpectedly dirty working directory after ${0}" >&2

pkg/client/clientset/versioned/clientset.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/client/clientset/versioned/fake/clientset_generated.go

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/client/clientset/versioned/typed/prowjobs/v1/fake/fake_prowjob.go

Lines changed: 19 additions & 112 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/client/clientset/versioned/typed/prowjobs/v1/fake/fake_prowjobs_client.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)