Skip to content

Commit 1ecf54a

Browse files
Merge pull request #78 from JordanGoasdoue/chore-bump-v1.3.0
chore(bump): upgrade tekton helm chart to v1.3.1
2 parents f15315a + fa26f9e commit 1ecf54a

24 files changed

+170
-84
lines changed

charts/tekton-pipeline/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
description: A Helm chart for Tekton Pipelines
33
name: tekton-pipeline
4-
version: 1.2.0
5-
appVersion: 1.2.0
4+
version: 1.3.1
5+
appVersion: 1.3.1
66
icon: https://avatars2.githubusercontent.com/u/47602533
77
home: https://github.com/cdfoundation/tekton-helm-chart
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Copyright 2025 The Tekton Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# This ConfigMap allows cluster operators to configure the exponential backoff
16+
# parameters used by Tekton Pipelines when retrying Kubernetes API operations,
17+
# such as creating TaskRuns or CustomRuns. Adjusting these values can help
18+
# tune retry behavior in response to webhook timeouts or transient errors.
19+
apiVersion: v1
20+
kind: ConfigMap
21+
metadata:
22+
name: config-wait-exponential-backoff
23+
labels:
24+
app.kubernetes.io/instance: default
25+
app.kubernetes.io/part-of: tekton-pipelines
26+
data:
27+
duration: "10s" # The initial duration before the first retry (Go duration string, e.g. "1s").
28+
factor: "2.0" # The factor by which the duration increases after each retry (should not be negative).
29+
jitter: "0.0" # Jitter factor (0.0 = no jitter, 0.2 = up to 20% random additional wait).
30+
steps: "5" # The number of times the duration may change (number of backoff steps).
31+
cap: "60s" # The maximum duration between retries (Go duration string, e.g. "30s").

charts/tekton-pipeline/templates/config.webhook.pipeline.tekton.dev-valwebhookcfg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
app.kubernetes.io/component: webhook
77
app.kubernetes.io/instance: default
88
app.kubernetes.io/part-of: tekton-pipelines
9-
pipeline.tekton.dev/release: "v1.2.0"
9+
pipeline.tekton.dev/release: "v1.3.1"
1010
webhooks:
1111
- admissionReviewVersions: ["v1"]
1212
clientConfig:

charts/tekton-pipeline/templates/customruns.tekton.dev-crd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ metadata:
1919
labels:
2020
app.kubernetes.io/instance: default
2121
app.kubernetes.io/part-of: tekton-pipelines
22-
pipeline.tekton.dev/release: "v1.2.0"
23-
version: "v1.2.0"
22+
pipeline.tekton.dev/release: "v1.3.1"
23+
version: "v1.3.1"
2424
spec:
2525
group: tekton.dev
2626
preserveUnknownFields: false

charts/tekton-pipeline/templates/pipelineruns.tekton.dev-crd.yaml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ metadata:
1919
labels:
2020
app.kubernetes.io/instance: default
2121
app.kubernetes.io/part-of: tekton-pipelines
22-
pipeline.tekton.dev/release: "v1.2.0"
23-
version: "v1.2.0"
22+
pipeline.tekton.dev/release: "v1.3.1"
23+
version: "v1.3.1"
2424
spec:
2525
group: tekton.dev
2626
preserveUnknownFields: false
@@ -2162,7 +2162,7 @@ spec:
21622162
description: |-
21632163
EntryPoint identifies the entry point into the build. This is often a path to a
21642164
build definition file and/or a target label within that file.
2165-
Example: "task/git-clone/0.8/git-clone.yaml"
2165+
Example: "task/git-clone/0.10/git-clone.yaml"
21662166
type: string
21672167
uri:
21682168
description: |-
@@ -2200,6 +2200,8 @@ spec:
22002200
enableStepActions:
22012201
description: EnableStepActions is a no-op flag since StepActions are stable
22022202
type: boolean
2203+
enableWaitExponentialBackoff:
2204+
type: boolean
22032205
enforceNonfalsifiability:
22042206
type: string
22052207
maxResultSize:
@@ -2239,7 +2241,7 @@ spec:
22392241
description: |-
22402242
EntryPoint identifies the entry point into the build. This is often a path to a
22412243
build definition file and/or a target label within that file.
2242-
Example: "task/git-clone/0.8/git-clone.yaml"
2244+
Example: "task/git-clone/0.10/git-clone.yaml"
22432245
type: string
22442246
uri:
22452247
description: |-
@@ -2575,7 +2577,7 @@ spec:
25752577
description: |-
25762578
EntryPoint identifies the entry point into the build. This is often a path to a
25772579
build definition file and/or a target label within that file.
2578-
Example: "task/git-clone/0.8/git-clone.yaml"
2580+
Example: "task/git-clone/0.10/git-clone.yaml"
25792581
type: string
25802582
uri:
25812583
description: |-
@@ -2613,6 +2615,8 @@ spec:
26132615
enableStepActions:
26142616
description: EnableStepActions is a no-op flag since StepActions are stable
26152617
type: boolean
2618+
enableWaitExponentialBackoff:
2619+
type: boolean
26162620
enforceNonfalsifiability:
26172621
type: string
26182622
maxResultSize:
@@ -2652,7 +2656,7 @@ spec:
26522656
description: |-
26532657
EntryPoint identifies the entry point into the build. This is often a path to a
26542658
build definition file and/or a target label within that file.
2655-
Example: "task/git-clone/0.8/git-clone.yaml"
2659+
Example: "task/git-clone/0.10/git-clone.yaml"
26562660
type: string
26572661
uri:
26582662
description: |-
@@ -2862,7 +2866,7 @@ spec:
28622866
description: |-
28632867
EntryPoint identifies the entry point into the build. This is often a path to a
28642868
build definition file and/or a target label within that file.
2865-
Example: "task/git-clone/0.8/git-clone.yaml"
2869+
Example: "task/git-clone/0.10/git-clone.yaml"
28662870
type: string
28672871
uri:
28682872
description: |-
@@ -2900,6 +2904,8 @@ spec:
29002904
enableStepActions:
29012905
description: EnableStepActions is a no-op flag since StepActions are stable
29022906
type: boolean
2907+
enableWaitExponentialBackoff:
2908+
type: boolean
29032909
enforceNonfalsifiability:
29042910
type: string
29052911
maxResultSize:
@@ -2939,7 +2945,7 @@ spec:
29392945
description: |-
29402946
EntryPoint identifies the entry point into the build. This is often a path to a
29412947
build definition file and/or a target label within that file.
2942-
Example: "task/git-clone/0.8/git-clone.yaml"
2948+
Example: "task/git-clone/0.10/git-clone.yaml"
29432949
type: string
29442950
uri:
29452951
description: |-
@@ -5120,6 +5126,8 @@ spec:
51205126
enableStepActions:
51215127
description: EnableStepActions is a no-op flag since StepActions are stable
51225128
type: boolean
5129+
enableWaitExponentialBackoff:
5130+
type: boolean
51235131
enforceNonfalsifiability:
51245132
type: string
51255133
maxResultSize:
@@ -5159,7 +5167,7 @@ spec:
51595167
description: |-
51605168
EntryPoint identifies the entry point into the build. This is often a path to a
51615169
build definition file and/or a target label within that file.
5162-
Example: "task/git-clone/0.8/git-clone.yaml"
5170+
Example: "task/git-clone/0.10/git-clone.yaml"
51635171
type: string
51645172
uri:
51655173
description: |-

charts/tekton-pipeline/templates/pipelines-info-cm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ data:
2525
# this ConfigMap such that even if we don't have access to
2626
# other resources in the namespace we still can have access to
2727
# this ConfigMap.
28-
version: "v1.2.0"
28+
version: "v1.3.1"

charts/tekton-pipeline/templates/pipelines.tekton.dev-crd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ metadata:
1919
labels:
2020
app.kubernetes.io/instance: default
2121
app.kubernetes.io/part-of: tekton-pipelines
22-
pipeline.tekton.dev/release: "v1.2.0"
23-
version: "v1.2.0"
22+
pipeline.tekton.dev/release: "v1.3.1"
23+
version: "v1.3.1"
2424
spec:
2525
group: tekton.dev
2626
preserveUnknownFields: false

charts/tekton-pipeline/templates/stepactions.tekton.dev-crd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ metadata:
1919
labels:
2020
app.kubernetes.io/instance: default
2121
app.kubernetes.io/part-of: tekton-pipelines
22-
pipeline.tekton.dev/release: "v1.2.0"
23-
version: "v1.2.0"
22+
pipeline.tekton.dev/release: "v1.3.1"
23+
version: "v1.3.1"
2424
spec:
2525
group: tekton.dev
2626
preserveUnknownFields: false

charts/tekton-pipeline/templates/taskruns.tekton.dev-crd.yaml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ metadata:
1919
labels:
2020
app.kubernetes.io/instance: default
2121
app.kubernetes.io/part-of: tekton-pipelines
22-
pipeline.tekton.dev/release: "v1.2.0"
23-
version: "v1.2.0"
22+
pipeline.tekton.dev/release: "v1.3.1"
23+
version: "v1.3.1"
2424
spec:
2525
group: tekton.dev
2626
preserveUnknownFields: false
@@ -1738,7 +1738,7 @@ spec:
17381738
description: |-
17391739
EntryPoint identifies the entry point into the build. This is often a path to a
17401740
build definition file and/or a target label within that file.
1741-
Example: "task/git-clone/0.8/git-clone.yaml"
1741+
Example: "task/git-clone/0.10/git-clone.yaml"
17421742
type: string
17431743
uri:
17441744
description: |-
@@ -1776,6 +1776,8 @@ spec:
17761776
enableStepActions:
17771777
description: EnableStepActions is a no-op flag since StepActions are stable
17781778
type: boolean
1779+
enableWaitExponentialBackoff:
1780+
type: boolean
17791781
enforceNonfalsifiability:
17801782
type: string
17811783
maxResultSize:
@@ -1815,7 +1817,7 @@ spec:
18151817
description: |-
18161818
EntryPoint identifies the entry point into the build. This is often a path to a
18171819
build definition file and/or a target label within that file.
1818-
Example: "task/git-clone/0.8/git-clone.yaml"
1820+
Example: "task/git-clone/0.10/git-clone.yaml"
18191821
type: string
18201822
uri:
18211823
description: |-
@@ -2025,7 +2027,7 @@ spec:
20252027
description: |-
20262028
EntryPoint identifies the entry point into the build. This is often a path to a
20272029
build definition file and/or a target label within that file.
2028-
Example: "task/git-clone/0.8/git-clone.yaml"
2030+
Example: "task/git-clone/0.10/git-clone.yaml"
20292031
type: string
20302032
uri:
20312033
description: |-
@@ -2063,6 +2065,8 @@ spec:
20632065
enableStepActions:
20642066
description: EnableStepActions is a no-op flag since StepActions are stable
20652067
type: boolean
2068+
enableWaitExponentialBackoff:
2069+
type: boolean
20662070
enforceNonfalsifiability:
20672071
type: string
20682072
maxResultSize:
@@ -2102,7 +2106,7 @@ spec:
21022106
description: |-
21032107
EntryPoint identifies the entry point into the build. This is often a path to a
21042108
build definition file and/or a target label within that file.
2105-
Example: "task/git-clone/0.8/git-clone.yaml"
2109+
Example: "task/git-clone/0.10/git-clone.yaml"
21062110
type: string
21072111
uri:
21082112
description: |-
@@ -3767,6 +3771,8 @@ spec:
37673771
enableStepActions:
37683772
description: EnableStepActions is a no-op flag since StepActions are stable
37693773
type: boolean
3774+
enableWaitExponentialBackoff:
3775+
type: boolean
37703776
enforceNonfalsifiability:
37713777
type: string
37723778
maxResultSize:
@@ -3806,7 +3812,7 @@ spec:
38063812
description: |-
38073813
EntryPoint identifies the entry point into the build. This is often a path to a
38083814
build definition file and/or a target label within that file.
3809-
Example: "task/git-clone/0.8/git-clone.yaml"
3815+
Example: "task/git-clone/0.10/git-clone.yaml"
38103816
type: string
38113817
uri:
38123818
description: |-
@@ -4020,6 +4026,8 @@ spec:
40204026
enableStepActions:
40214027
description: EnableStepActions is a no-op flag since StepActions are stable
40224028
type: boolean
4029+
enableWaitExponentialBackoff:
4030+
type: boolean
40234031
enforceNonfalsifiability:
40244032
type: string
40254033
maxResultSize:
@@ -4059,7 +4067,7 @@ spec:
40594067
description: |-
40604068
EntryPoint identifies the entry point into the build. This is often a path to a
40614069
build definition file and/or a target label within that file.
4062-
Example: "task/git-clone/0.8/git-clone.yaml"
4070+
Example: "task/git-clone/0.10/git-clone.yaml"
40634071
type: string
40644072
uri:
40654073
description: |-

charts/tekton-pipeline/templates/tasks.tekton.dev-crd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ metadata:
1919
labels:
2020
app.kubernetes.io/instance: default
2121
app.kubernetes.io/part-of: tekton-pipelines
22-
pipeline.tekton.dev/release: "v1.2.0"
23-
version: "v1.2.0"
22+
pipeline.tekton.dev/release: "v1.3.1"
23+
version: "v1.3.1"
2424
spec:
2525
group: tekton.dev
2626
preserveUnknownFields: false

0 commit comments

Comments
 (0)