Skip to content

Commit d783fc0

Browse files
chore(deps): update konflux references
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
1 parent a62a70a commit d783fc0

File tree

4 files changed

+188
-192
lines changed

4 files changed

+188
-192
lines changed

.tekton/image-pull-request.yaml

Lines changed: 49 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ metadata:
66
build.appstudio.redhat.com/commit_sha: '{{revision}}'
77
build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}'
88
build.appstudio.redhat.com/target_branch: '{{target_branch}}'
9-
pipelinesascode.tekton.dev/max-keep-runs: "3"
9+
pipelinesascode.tekton.dev/max-keep-runs: '3'
1010
pipelinesascode.tekton.dev/on-cel-expression: |
1111
event == "pull_request" &&
1212
target_branch == "master" &&
1313
(
1414
"config/***".pathChanged() ||
1515
".tekton/image-pull-request.yaml".pathChanged()
1616
)
17-
creationTimestamp: null
17+
creationTimestamp:
1818
labels:
1919
appstudio.openshift.io/application: boilerplate-master
2020
appstudio.openshift.io/component: image
@@ -34,7 +34,7 @@ spec:
3434
- name: dockerfile
3535
value: config/Dockerfile
3636
- name: build-source-image
37-
value: "true"
37+
value: 'true'
3838
pipelineSpec:
3939
finally:
4040
- name: show-sbom
@@ -76,70 +76,67 @@ spec:
7676
- description: Source Repository URL
7777
name: git-url
7878
type: string
79-
- default: ""
79+
- default: ''
8080
description: Revision of the Source Repository
8181
name: revision
8282
type: string
8383
- description: Fully Qualified Output Image
8484
name: output-image
8585
type: string
8686
- default: .
87-
description: Path to the source code of an application's component from where
88-
to build image.
87+
description: Path to the source code of an application's component from where to build image.
8988
name: path-context
9089
type: string
9190
- default: Dockerfile
92-
description: Path to the Dockerfile inside the context specified by parameter
93-
path-context
91+
description: Path to the Dockerfile inside the context specified by parameter path-context
9492
name: dockerfile
9593
type: string
96-
- default: "false"
94+
- default: 'false'
9795
description: Force rebuild image
9896
name: rebuild
9997
type: string
100-
- default: "false"
98+
- default: 'false'
10199
description: Skip checks against built image
102100
name: skip-checks
103101
type: string
104-
- default: "false"
102+
- default: 'false'
105103
description: Execute the build with network isolation
106104
name: hermetic
107105
type: string
108-
- default: ""
106+
- default: ''
109107
description: Build dependencies to be prefetched by Cachi2
110108
name: prefetch-input
111109
type: string
112-
- default: "false"
110+
- default: 'false'
113111
description: Java build
114112
name: java
115113
type: string
116-
- default: ""
117-
description: Image tag expiration time, time values could be something like
118-
1h, 2d, 3w for hours, days, and weeks, respectively.
114+
- default: ''
115+
description: Image tag expiration time, time values could be something like 1h, 2d, 3w for hours, days, and weeks, respectively.
119116
name: image-expires-after
120-
- default: "false"
117+
- default: 'false'
121118
description: Build a source image.
122119
name: build-source-image
123120
type: string
124121
- default: []
125122
description: Array of --build-arg values ("arg=value" strings) for buildah
126123
name: build-args
127124
type: array
128-
- default: ""
125+
- default: ''
129126
description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file
130127
name: build-args-file
131128
type: string
132129
results:
133-
- description: ""
130+
- description: ''
134131
name: IMAGE_URL
135132
value: $(tasks.build-container.results.IMAGE_URL)
136-
- description: ""
133+
- description: ''
137134
name: IMAGE_DIGEST
138135
value: $(tasks.build-container.results.IMAGE_DIGEST)
139-
- description: ""
136+
- description: ''
140137
name: CHAINS-GIT_URL
141138
value: $(tasks.clone-repository.results.url)
142-
- description: ""
139+
- description: ''
143140
name: CHAINS-GIT_COMMIT
144141
value: $(tasks.clone-repository.results.commit)
145142
tasks:
@@ -173,15 +170,15 @@ spec:
173170
- name: name
174171
value: git-clone
175172
- name: bundle
176-
value: quay.io/konflux-ci/tekton-catalog/task-git-clone:0.1@sha256:3ced9a6b9d8520773d3ffbf062190515a362ecda11e72f56e38e4dd980294b57
173+
value: quay.io/konflux-ci/tekton-catalog/task-git-clone:0.1@sha256:eca6b8106b6ec1ea4b03d196c007928c57a0683ea1ce068e8f34f9b9bef3387d
177174
- name: kind
178175
value: task
179176
resolver: bundles
180177
when:
181178
- input: $(tasks.init.results.build)
182179
operator: in
183180
values:
184-
- "true"
181+
- 'true'
185182
workspaces:
186183
- name: output
187184
workspace: workspace
@@ -198,15 +195,15 @@ spec:
198195
- name: name
199196
value: prefetch-dependencies
200197
- name: bundle
201-
value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies:0.2@sha256:8c649b82a9d228018e5a5d9b844df9fd1db63db33c9b5034586af3a766378de7
198+
value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies:0.2@sha256:735a71137e43f8055bb1871653b5cbca5c8c437d90e1c78c5ba83f19b1ebedc9
202199
- name: kind
203200
value: task
204201
resolver: bundles
205202
when:
206203
- input: $(params.prefetch-input)
207204
operator: notin
208205
values:
209-
- ""
206+
- ''
210207
workspaces:
211208
- name: source
212209
workspace: workspace
@@ -242,15 +239,15 @@ spec:
242239
- name: name
243240
value: buildah
244241
- name: bundle
245-
value: quay.io/konflux-ci/tekton-catalog/task-buildah:0.4@sha256:1799515338c544f6917044398777714c9e0691895231a9d7f456dca75c6f4b65
242+
value: quay.io/konflux-ci/tekton-catalog/task-buildah:0.4@sha256:977ebe581158e184504fb5886f534812b91cc3e79445be48449f5b7cfd14f034
246243
- name: kind
247244
value: task
248245
resolver: bundles
249246
when:
250247
- input: $(tasks.init.results.build)
251248
operator: in
252249
values:
253-
- "true"
250+
- 'true'
254251
workspaces:
255252
- name: source
256253
workspace: workspace
@@ -273,11 +270,11 @@ spec:
273270
- input: $(tasks.init.results.build)
274271
operator: in
275272
values:
276-
- "true"
273+
- 'true'
277274
- input: $(params.build-source-image)
278275
operator: in
279276
values:
280-
- "true"
277+
- 'true'
281278
workspaces:
282279
- name: workspace
283280
workspace: workspace
@@ -294,15 +291,15 @@ spec:
294291
- name: name
295292
value: deprecated-image-check
296293
- name: bundle
297-
value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:ecd33669676b3a193ff4c2c6223cb912cc1b0cf5cc36e080eaec7718500272cf
294+
value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:270a79138a98e43c366d3722978cb5940d2bcb822ba6b60377330f863b7a1e62
298295
- name: kind
299296
value: task
300297
resolver: bundles
301298
when:
302299
- input: $(params.skip-checks)
303300
operator: in
304301
values:
305-
- "false"
302+
- 'false'
306303
- name: clair-scan
307304
params:
308305
- name: image-digest
@@ -316,15 +313,15 @@ spec:
316313
- name: name
317314
value: clair-scan
318315
- name: bundle
319-
value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:68a8fe28527c4469243119a449e2b3a6655f2acac589c069ea6433242da8ed4d
316+
value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:d354939892f3a904223ec080cc3771bd11931085a5d202323ea491ee8e8c5e43
320317
- name: kind
321318
value: task
322319
resolver: bundles
323320
when:
324321
- input: $(params.skip-checks)
325322
operator: in
326323
values:
327-
- "false"
324+
- 'false'
328325
- name: ecosystem-cert-preflight-checks
329326
params:
330327
- name: image-url
@@ -336,15 +333,15 @@ spec:
336333
- name: name
337334
value: ecosystem-cert-preflight-checks
338335
- name: bundle
339-
value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:302828e9d7abc72b8a44fb2b9be068f86c982d8e5f4550b8bf654571d6361ee8
336+
value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:95ca11d147ee97d98f495477e9f42afe94ba3f869fc81c4e7b241ebd21e7395f
340337
- name: kind
341338
value: task
342339
resolver: bundles
343340
when:
344341
- input: $(params.skip-checks)
345342
operator: in
346343
values:
347-
- "false"
344+
- 'false'
348345
- name: sast-snyk-check
349346
params:
350347
- name: image-digest
@@ -358,15 +355,15 @@ spec:
358355
- name: name
359356
value: sast-snyk-check
360357
- name: bundle
361-
value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check:0.4@sha256:d7bdc1b08b384f5db323c88ccd3aab1ea58db1d401ff2b2338f4b984eec44e1b
358+
value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check:0.4@sha256:da2344f6dae50fc14892d818aee128f9d5df32d0d98dddb504e721408a9fb13d
362359
- name: kind
363360
value: task
364361
resolver: bundles
365362
when:
366363
- input: $(params.skip-checks)
367364
operator: in
368365
values:
369-
- "false"
366+
- 'false'
370367
workspaces:
371368
- name: workspace
372369
workspace: workspace
@@ -383,15 +380,15 @@ spec:
383380
- name: name
384381
value: clamav-scan
385382
- name: bundle
386-
value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:386c8c3395b44f6eb927dbad72382808b0ae42008f183064ca77cb4cad998442
383+
value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:9cab95ac9e833d77a63c079893258b73b8d5a298d93aaf9bdd6722471bc2f338
387384
- name: kind
388385
value: task
389386
resolver: bundles
390387
when:
391388
- input: $(params.skip-checks)
392389
operator: in
393390
values:
394-
- "false"
391+
- 'false'
395392
- name: sast-shell-check
396393
params:
397394
- name: image-digest
@@ -405,15 +402,15 @@ spec:
405402
- name: name
406403
value: sast-shell-check
407404
- name: bundle
408-
value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check:0.1@sha256:18d594df21cb92cbc409065b25a863492ea7209e2a34045ced69a24a68ca41d8
405+
value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check:0.1@sha256:8567a911a467746e2785f1e4fb69e5c2bee1879df43a2ccdb8ae928e58274488
409406
- name: kind
410407
value: task
411408
resolver: bundles
412409
when:
413410
- input: $(params.skip-checks)
414411
operator: in
415412
values:
416-
- "false"
413+
- 'false'
417414
workspaces:
418415
- name: workspace
419416
workspace: workspace
@@ -428,30 +425,32 @@ spec:
428425
- name: name
429426
value: sast-unicode-check
430427
- name: bundle
431-
value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check:0.2@sha256:4d5bf6549e42184e462ab7ccfba0153954c65214aa82f319a3215e94e068cded
428+
value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check:0.2@sha256:b690b6a725fc2753283350eb313057f8d6ed7417503f80958669a20d7bbc8900
432429
- name: kind
433430
value: task
434431
resolver: bundles
435432
when:
436433
- input: $(params.skip-checks)
437434
operator: in
438435
values:
439-
- "false"
436+
- 'false'
440437
workspaces:
441438
- name: workspace
442439
workspace: workspace
443440
- name: apply-tags
444441
params:
445-
- name: IMAGE
442+
- name: IMAGE_URL
446443
value: $(tasks.build-container.results.IMAGE_URL)
444+
- name: IMAGE_DIGEST
445+
value: $(tasks.build-container.results.IMAGE_DIGEST)
447446
runAfter:
448447
- build-container
449448
taskRef:
450449
params:
451450
- name: name
452451
value: apply-tags
453452
- name: bundle
454-
value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:1c6f673fe100a49f58aaef62580c8adf0c397790964f4e7bac7fcd3f4d07c92e
453+
value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:517a51e260c0b59654a9d7b842e1ab07d76bce15ca7ce9c8fd2489a19be6463d
455454
- name: kind
456455
value: task
457456
resolver: bundles
@@ -472,7 +471,7 @@ spec:
472471
- name: name
473472
value: push-dockerfile
474473
- name: bundle
475-
value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile:0.1@sha256:c82189e5d331e489cff99f0399f133fd3fad08921bea86747dfa379d1b5c748d
474+
value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile:0.1@sha256:1e78c3a32f072d3ba8c49362f16f7e97365c1cfde44813d21b4988765216a09c
476475
- name: kind
477476
value: task
478477
resolver: bundles
@@ -492,15 +491,15 @@ spec:
492491
- name: name
493492
value: rpms-signature-scan
494493
- name: bundle
495-
value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:80a4562d5f86eb6812f00d4e30e94c1ad27ec937735dc29f5a63e9335676b3dc
494+
value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1b6c20ab3dbfb0972803d3ebcb2fa72642e59400c77bd66dfd82028bdd09e120
496495
- name: kind
497496
value: task
498497
resolver: bundles
499498
when:
500499
- input: $(params.skip-checks)
501500
operator: in
502501
values:
503-
- "false"
502+
- 'false'
504503
workspaces:
505504
- name: workspace
506505
- name: git-auth
@@ -522,7 +521,7 @@ spec:
522521
- name: workspace
523522
volumeClaimTemplate:
524523
metadata:
525-
creationTimestamp: null
524+
creationTimestamp:
526525
spec:
527526
accessModes:
528527
- ReadWriteOnce

0 commit comments

Comments
 (0)