Skip to content

Commit 3591f54

Browse files
author
serverless-qe
committed
[release-v1.15] Sync Konflux configurations
1 parent 8042837 commit 3591f54

20 files changed

Lines changed: 35 additions & 31 deletions

.github/workflows/dependabot-deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: ${{ github.actor == 'dependabot[bot]' }}
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
ref: ${{ github.head_ref }}
2020
path: ./src/github.com/${{ github.repository }}

.konflux/applications/serverless-operator-135/components/kn-client-cli-artifacts-115.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ metadata:
77
name: kn-client-cli-artifacts-115
88
spec:
99
componentName: kn-client-cli-artifacts-115
10-
application: serverless-operator-135
11-
10+
application: serverless-operator-135
1211
source:
1312
git:
1413
url: https://github.com/openshift-knative/client.git

.konflux/applications/serverless-operator-135/components/kn-client-kn-115.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ metadata:
77
name: kn-client-kn-115
88
spec:
99
componentName: kn-client-kn-115
10-
application: serverless-operator-135
11-
10+
application: serverless-operator-135
1211
source:
1312
git:
1413
url: https://github.com/openshift-knative/client.git

.konflux/applications/serverless-operator-135/components/kn-client-test-grpc-ping-115.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ metadata:
77
name: kn-client-test-grpc-ping-115
88
spec:
99
componentName: kn-client-test-grpc-ping-115
10-
application: serverless-operator-135
11-
10+
application: serverless-operator-135
1211
source:
1312
git:
1413
url: https://github.com/openshift-knative/client.git

.konflux/applications/serverless-operator-135/components/kn-client-test-helloworld-115.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ metadata:
77
name: kn-client-test-helloworld-115
88
spec:
99
componentName: kn-client-test-helloworld-115
10-
application: serverless-operator-135
11-
10+
application: serverless-operator-135
1211
source:
1312
git:
1413
url: https://github.com/openshift-knative/client.git

.konflux/applications/serverless-operator-135/components/kn-client-test-servingcontainer-115.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ metadata:
77
name: kn-client-test-servingcontainer-115
88
spec:
99
componentName: kn-client-test-servingcontainer-115
10-
application: serverless-operator-135
11-
10+
application: serverless-operator-135
1211
source:
1312
git:
1413
url: https://github.com/openshift-knative/client.git

.konflux/applications/serverless-operator-135/components/kn-client-test-sidecarcontainer-115.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ metadata:
77
name: kn-client-test-sidecarcontainer-115
88
spec:
99
componentName: kn-client-test-sidecarcontainer-115
10-
application: serverless-operator-135
11-
10+
application: serverless-operator-135
1211
source:
1312
git:
1413
url: https://github.com/openshift-knative/client.git

.tekton/docker-build.yaml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,14 @@ spec:
8787
- default: "false"
8888
description: Enable cache proxy configuration
8989
name: enable-cache-proxy
90+
- default: "true"
91+
description: Use the package registry proxy when prefetching dependencies
92+
name: enable-package-registry-proxy
93+
- default: .
94+
description: Target directories in component's source code to scan with SAST tools.
95+
Multiple values should be separated with commas.
96+
name: sast-target-dirs
97+
type: string
9098
- default: []
9199
description: Array of --build-arg values ("arg=value" strings) for buildah
92100
name: build-args
@@ -100,10 +108,6 @@ spec:
100108
VMs
101109
name: privileged-nested
102110
type: string
103-
- name: enable-package-registry-proxy
104-
default: 'true'
105-
description: Use the package registry proxy when prefetching dependencies
106-
type: string
107111
results:
108112
- description: ""
109113
name: IMAGE_URL
@@ -126,6 +130,8 @@ spec:
126130
value: $(tasks.build-image-index.results.IMAGE_DIGEST)
127131
- name: image-url
128132
value: $(tasks.build-image-index.results.IMAGE_URL)
133+
- name: TARGET_DIRS
134+
value: $(params.sast-target-dirs)
129135
- name: SOURCE_ARTIFACT
130136
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
131137
- name: CACHI2_ARTIFACT
@@ -152,14 +158,14 @@ spec:
152158
value: $(params.prefetch-input-dev-package-managers)
153159
- name: input
154160
value: $(params.prefetch-input)
161+
- name: enable-package-registry-proxy
162+
value: $(params.enable-package-registry-proxy)
155163
- name: SOURCE_ARTIFACT
156164
value: $(tasks.clone-repository.results.SOURCE_ARTIFACT)
157165
- name: ociStorage
158166
value: $(params.output-image).prefetch
159167
- name: ociArtifactExpiresAfter
160168
value: $(params.image-expires-after)
161-
- name: enable-package-registry-proxy
162-
value: $(params.enable-package-registry-proxy)
163169
runAfter:
164170
- clone-repository
165171
taskRef:
@@ -440,6 +446,8 @@ spec:
440446
value: $(tasks.build-image-index.results.IMAGE_DIGEST)
441447
- name: image-url
442448
value: $(tasks.build-image-index.results.IMAGE_URL)
449+
- name: TARGET_DIRS
450+
value: $(params.sast-target-dirs)
443451
- name: SOURCE_ARTIFACT
444452
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
445453
- name: CACHI2_ARTIFACT
@@ -466,6 +474,8 @@ spec:
466474
value: $(tasks.build-image-index.results.IMAGE_DIGEST)
467475
- name: image-url
468476
value: $(tasks.build-image-index.results.IMAGE_URL)
477+
- name: TARGET_DIRS
478+
value: $(params.sast-target-dirs)
469479
- name: SOURCE_ARTIFACT
470480
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
471481
- name: CACHI2_ARTIFACT

.tekton/kn-client-cli-artifacts-115-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
- name: build-args
2323
value:
2424
- CLI_ARTIFACTS=brew.registry.redhat.io/rh-osbs/openshift-serverless-1-kn-cli-artifacts-rhel8:1.15.0
25-
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.22
25+
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.25
2626
- GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
2727
- JAVA_BUILDER=registry.access.redhat.com/ubi8/openjdk-21
2828
- JAVA_RUNTIME=registry.access.redhat.com/ubi8/openjdk-21-runtime

.tekton/kn-client-cli-artifacts-115-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
- name: build-args
2222
value:
2323
- CLI_ARTIFACTS=brew.registry.redhat.io/rh-osbs/openshift-serverless-1-kn-cli-artifacts-rhel8:1.15.0
24-
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.22
24+
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_golang_1.25
2525
- GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
2626
- JAVA_BUILDER=registry.access.redhat.com/ubi8/openjdk-21
2727
- JAVA_RUNTIME=registry.access.redhat.com/ubi8/openjdk-21-runtime

0 commit comments

Comments
 (0)