Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 26 additions & 3 deletions .tekton/bundle-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,22 @@ spec:
VMs
name: privileged-nested
type: string
- default: ""
description: Sets the image created time and the SOURCE_DATE_EPOCH build argument.
On its own, it does not change file timestamps inside the layers (set rewrite-timestamp
to "true" for that). Leave empty to keep the actual build time.
name: source-date-epoch
type: string
- default: "false"
description: When "true", clamp file modification times in the image layers to
at most source-date-epoch. Does nothing unless source-date-epoch is set.
name: rewrite-timestamp
type: string
- default: "false"
description: When "true", omit the build history (history timestamps, layer metadata,
etc.) from the resulting image.
name: omit-history
type: string
- default:
- linux/x86_64
description: List of platforms to build the container images on. The available
Expand Down Expand Up @@ -157,6 +173,12 @@ spec:
value: $(tasks.init.results.http-proxy)
- name: NO_PROXY
value: $(tasks.init.results.no-proxy)
- name: SOURCE_DATE_EPOCH
value: $(params.source-date-epoch)
- name: REWRITE_TIMESTAMP
value: $(params.rewrite-timestamp)
- name: OMIT_HISTORY
value: $(params.omit-history)
- name: SOURCE_ARTIFACT
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
- name: CACHI2_ARTIFACT
Expand Down Expand Up @@ -363,7 +385,7 @@ spec:
- name: image-platform
value:
- $(params.build-platforms)
name: clair-scan
name: roxctl-scan
params:
- name: image-digest
value: $(tasks.build-image-index.results.IMAGE_DIGEST)
Expand All @@ -374,12 +396,13 @@ spec:
taskRef:
params:
- name: name
value: clair-scan
value: roxctl-scan
- name: bundle
value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.3@sha256:8fad4c2e2f470f82ee43d6b2ac72327b4d9c6e9cb514a678911c1c9359c29894
value: quay.io/konflux-ci/tekton-catalog/task-roxctl-scan:0.1@sha256:97e2b2cdca9110fdc8a93ba585a1a1a743f989f2fd85f4073f6e5ea9ad2ce828
- name: kind
value: task
resolver: bundles
timeout: 20m
when:
- input: $(params.skip-checks)
operator: in
Expand Down
29 changes: 26 additions & 3 deletions .tekton/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,22 @@ spec:
VMs
name: privileged-nested
type: string
- default: ""
description: Sets the image created time and the SOURCE_DATE_EPOCH build argument.
On its own, it does not change file timestamps inside the layers (set rewrite-timestamp
to "true" for that). Leave empty to keep the actual build time.
name: source-date-epoch
type: string
- default: "false"
description: When "true", clamp file modification times in the image layers to
at most source-date-epoch. Does nothing unless source-date-epoch is set.
name: rewrite-timestamp
type: string
- default: "false"
description: When "true", omit the build history (history timestamps, layer metadata,
etc.) from the resulting image.
name: omit-history
type: string
results:
- description: ""
name: IMAGE_URL
Expand Down Expand Up @@ -274,6 +290,12 @@ spec:
value: $(tasks.init.results.http-proxy)
- name: NO_PROXY
value: $(tasks.init.results.no-proxy)
- name: SOURCE_DATE_EPOCH
value: $(params.source-date-epoch)
- name: REWRITE_TIMESTAMP
value: $(params.rewrite-timestamp)
- name: OMIT_HISTORY
value: $(params.omit-history)
- name: SOURCE_ARTIFACT
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
- name: CACHI2_ARTIFACT
Expand Down Expand Up @@ -366,7 +388,7 @@ spec:
- name: image-platform
value:
- $(params.build-platforms)
name: clair-scan
name: roxctl-scan
params:
- name: image-digest
value: $(tasks.build-image-index.results.IMAGE_DIGEST)
Expand All @@ -377,12 +399,13 @@ spec:
taskRef:
params:
- name: name
value: clair-scan
value: roxctl-scan
- name: bundle
value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.3@sha256:8fad4c2e2f470f82ee43d6b2ac72327b4d9c6e9cb514a678911c1c9359c29894
value: quay.io/konflux-ci/tekton-catalog/task-roxctl-scan:0.1@sha256:97e2b2cdca9110fdc8a93ba585a1a1a743f989f2fd85f4073f6e5ea9ad2ce828
- name: kind
value: task
resolver: bundles
timeout: 20m
when:
- input: $(params.skip-checks)
operator: in
Expand Down
52 changes: 50 additions & 2 deletions .tekton/fbc-builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,22 @@ spec:
description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file
name: build-args-file
type: string
- default: ""
description: Sets the image created time and the SOURCE_DATE_EPOCH build argument.
On its own, it does not change file timestamps inside the layers (set rewrite-timestamp
to "true" for that). Leave empty to keep the actual build time.
name: source-date-epoch
type: string
- default: "false"
description: When "true", clamp file modification times in the image layers to
at most source-date-epoch. Does nothing unless source-date-epoch is set.
name: rewrite-timestamp
type: string
- default: "false"
description: When "true", omit the build history (history timestamps, layer metadata,
etc.) from the resulting image.
name: omit-history
type: string
results:
- description: ""
name: IMAGE_URL
Expand All @@ -133,13 +149,13 @@ spec:
- name: IDMS_PATH
value: $(params.idms-path)
- name: SOURCE_ARTIFACT
value: $(tasks.clone-repository.results.SOURCE_ARTIFACT)
value: $(tasks.fbc-inject-lifecycle.results.SOURCE_ARTIFACT)
- name: ociStorage
value: $(params.output-image).opm
- name: ociArtifactExpiresAfter
value: $(params.image-expires-after)
runAfter:
- clone-repository
- fbc-inject-lifecycle
taskRef:
params:
- name: name
Expand Down Expand Up @@ -205,6 +221,32 @@ spec:
workspaces:
- name: basic-auth
workspace: git-auth
- name: fbc-inject-lifecycle
params:
- name: SOURCE_ARTIFACT
value: $(tasks.clone-repository.results.SOURCE_ARTIFACT)
- name: ociStorage
value: $(params.output-image).lifecycle
- name: ociArtifactExpiresAfter
value: $(params.image-expires-after)
- name: CONTEXT
value: $(params.path-context)
- name: DOCKERFILE
value: $(params.dockerfile)
- name: BUILD_ARGS
value:
- $(params.build-args[*])
runAfter:
- clone-repository
taskRef:
params:
- name: name
value: fbc-inject-lifecycle-oci-ta
- name: bundle
value: quay.io/konflux-ci/tekton-catalog/task-fbc-inject-lifecycle-oci-ta:0.1@sha256:da1217be1dcec3d5b5140ea351466607005481397b31f2b81108c4fd3012fbde
- name: kind
value: task
resolver: bundles
- name: prefetch-dependencies
params:
- name: input
Expand Down Expand Up @@ -265,6 +307,12 @@ spec:
value: $(tasks.init.results.http-proxy)
- name: NO_PROXY
value: $(tasks.init.results.no-proxy)
- name: SOURCE_DATE_EPOCH
value: $(params.source-date-epoch)
- name: REWRITE_TIMESTAMP
value: $(params.rewrite-timestamp)
- name: OMIT_HISTORY
value: $(params.omit-history)
- name: SOURCE_ARTIFACT
value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT)
- name: CACHI2_ARTIFACT
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-bundle-138-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-bundle-138-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-416-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-416-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-417-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-417-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-418-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-418-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-419-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-419-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-420-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-420-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-421-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-421-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-422-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-index-138-fbc-422-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-ingress-138-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-ingress-138-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-kn-operator-138-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-kn-operator-138-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
2 changes: 1 addition & 1 deletion .tekton/serverless-metadata-webhook-138-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- VERSION=1.38.0
- TAG=v1.21.0
- CLI_ARTIFACTS=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9:v4.16
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25
- GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.26
- GO_RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal
- JAVA_BUILDER=registry.access.redhat.com/ubi9/openjdk-21
- JAVA_RUNTIME=registry.access.redhat.com/ubi9/openjdk-21-runtime
Expand Down
Loading
Loading