Skip to content

Commit 0c29dd2

Browse files
author
serverless-qe
committed
[release-1.38] Sync Konflux configurations
1 parent 1b90fed commit 0c29dd2

29 files changed

+55
-5
lines changed

.tekton/bundle-build.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
apiVersion: tekton.dev/v1
22
kind: Pipeline
33
metadata:
4-
creationTimestamp: null
54
labels:
65
pipelines.openshift.io/runtime: generic
76
pipelines.openshift.io/strategy: docker
@@ -80,6 +79,9 @@ spec:
8079
oci or docker.
8180
name: buildah-format
8281
type: string
82+
- default: "false"
83+
description: Enable cache proxy configuration
84+
name: enable-cache-proxy
8385
- default: []
8486
description: Array of --build-arg values ("arg=value" strings) for buildah
8587
name: build-args
@@ -147,6 +149,10 @@ spec:
147149
value: $(tasks.clone-repository.results.url)
148150
- name: BUILDAH_FORMAT
149151
value: $(params.buildah-format)
152+
- name: HTTP_PROXY
153+
value: $(tasks.init.results.http-proxy)
154+
- name: NO_PROXY
155+
value: $(tasks.init.results.no-proxy)
150156
- name: SOURCE_ARTIFACT
151157
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
152158
- name: CACHI2_ARTIFACT
@@ -250,6 +256,8 @@ spec:
250256
value: $(params.rebuild)
251257
- name: skip-checks
252258
value: $(params.skip-checks)
259+
- name: enable-cache-proxy
260+
value: $(params.enable-cache-proxy)
253261
taskRef:
254262
params:
255263
- name: name
@@ -513,7 +521,7 @@ spec:
513521
- name: name
514522
value: rpms-signature-scan
515523
- name: bundle
516-
value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:bff03feaaeb54b7e185606abf80a187290b2b749364f1c331d79b45af35651b5
524+
value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:f2df541f49b5310f343b55f58b0881a46a2b46c5df39a9c34563c5042b106f6f
517525
- name: kind
518526
value: task
519527
resolver: bundles

.tekton/docker-build.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
apiVersion: tekton.dev/v1
22
kind: Pipeline
33
metadata:
4-
creationTimestamp: null
54
labels:
65
pipelines.openshift.io/runtime: generic
76
pipelines.openshift.io/strategy: docker
@@ -89,6 +88,9 @@ spec:
8988
oci or docker.
9089
name: buildah-format
9190
type: string
91+
- default: "false"
92+
description: Enable cache proxy configuration
93+
name: enable-cache-proxy
9294
- default: []
9395
description: Array of --build-arg values ("arg=value" strings) for buildah
9496
name: build-args
@@ -199,6 +201,8 @@ spec:
199201
value: $(params.rebuild)
200202
- name: skip-checks
201203
value: $(params.skip-checks)
204+
- name: enable-cache-proxy
205+
value: $(params.enable-cache-proxy)
202206
taskRef:
203207
params:
204208
- name: name
@@ -269,6 +273,10 @@ spec:
269273
value: $(tasks.clone-repository.results.url)
270274
- name: BUILDAH_FORMAT
271275
value: $(params.buildah-format)
276+
- name: HTTP_PROXY
277+
value: $(tasks.init.results.http-proxy)
278+
- name: NO_PROXY
279+
value: $(tasks.init.results.no-proxy)
272280
- name: SOURCE_ARTIFACT
273281
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
274282
- name: CACHI2_ARTIFACT
@@ -541,7 +549,7 @@ spec:
541549
- name: name
542550
value: rpms-signature-scan
543551
- name: bundle
544-
value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:bff03feaaeb54b7e185606abf80a187290b2b749364f1c331d79b45af35651b5
552+
value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:f2df541f49b5310f343b55f58b0881a46a2b46c5df39a9c34563c5042b106f6f
545553
- name: kind
546554
value: task
547555
resolver: bundles

.tekton/fbc-builder.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
apiVersion: tekton.dev/v1
22
kind: Pipeline
33
metadata:
4-
creationTimestamp: null
54
labels:
65
pipelines.openshift.io/runtime: fbc
76
pipelines.openshift.io/strategy: fbc
@@ -76,6 +75,9 @@ spec:
7675
description: Add built image into an OCI image index
7776
name: build-image-index
7877
type: string
78+
- default: "false"
79+
description: Enable cache proxy configuration
80+
name: enable-cache-proxy
7981
- default: []
8082
description: Array of --build-arg values ("arg=value" strings) for buildah
8183
name: build-args
@@ -125,6 +127,8 @@ spec:
125127
value: $(params.rebuild)
126128
- name: skip-checks
127129
value: $(params.skip-checks)
130+
- name: enable-cache-proxy
131+
value: $(params.enable-cache-proxy)
128132
taskRef:
129133
params:
130134
- name: name
@@ -242,6 +246,10 @@ spec:
242246
value: $(params.build-args-file)
243247
- name: SOURCE_URL
244248
value: $(tasks.clone-repository.results.url)
249+
- name: HTTP_PROXY
250+
value: $(tasks.init.results.http-proxy)
251+
- name: NO_PROXY
252+
value: $(tasks.init.results.no-proxy)
245253
- name: SOURCE_ARTIFACT
246254
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
247255
- name: CACHI2_ARTIFACT

.tekton/serverless-bundle-138-pull-request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ spec:
2222
- name: build-args
2323
value:
2424
- VERSION=1.37.0
25+
- TAG=v1.17.0
2526
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
2627
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.24
2728
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal

.tekton/serverless-bundle-138-push.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ spec:
2121
- name: build-args
2222
value:
2323
- VERSION=1.37.0
24+
- TAG=v1.17.0
2425
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
2526
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.24
2627
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal

.tekton/serverless-index-138-fbc-414-pull-request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ spec:
2424
- name: build-args
2525
value:
2626
- VERSION=1.37.0
27+
- TAG=v1.17.0
2728
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
2829
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.24
2930
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal

.tekton/serverless-index-138-fbc-414-push.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ spec:
2323
- name: build-args
2424
value:
2525
- VERSION=1.37.0
26+
- TAG=v1.17.0
2627
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
2728
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.24
2829
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal

.tekton/serverless-index-138-fbc-415-pull-request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ spec:
2424
- name: build-args
2525
value:
2626
- VERSION=1.37.0
27+
- TAG=v1.17.0
2728
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
2829
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.24
2930
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal

.tekton/serverless-index-138-fbc-415-push.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ spec:
2323
- name: build-args
2424
value:
2525
- VERSION=1.37.0
26+
- TAG=v1.17.0
2627
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
2728
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.24
2829
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal

.tekton/serverless-index-138-fbc-416-pull-request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ spec:
2424
- name: build-args
2525
value:
2626
- VERSION=1.37.0
27+
- TAG=v1.17.0
2728
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
2829
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.24
2930
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal

0 commit comments

Comments
 (0)