Skip to content

Commit 1b320ac

Browse files
committed
📼 Images generated
1 parent 9391910 commit 1b320ac

File tree

5 files changed

+84
-10
lines changed

5 files changed

+84
-10
lines changed

openshift/ci-operator/build-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN wget https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 &&
1919
RUN ./get-helm-3 --version v3.11.3 --no-sudo && helm version
2020

2121
RUN GOFLAGS='' go install github.com/mikefarah/yq/v3@latest
22-
RUN GOFLAGS='' go install -tags="exclude_graphdriver_btrfs containers_image_openpgp" github.com/containers/skopeo/cmd/skopeo@v1.16.1
22+
RUN GOFLAGS='' go install -tags="exclude_graphdriver_btrfs containers_image_openpgp" github.com/containers/skopeo/cmd/skopeo@v1.17.0
2323

2424
# go install creates $GOPATH/.cache with root permissions, we delete it here
2525
# to avoid permission issues with the runtime users
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DO NOT EDIT! Generated Dockerfile for cmd/kn-event-sender (modified!!).
1+
# DO NOT EDIT! Generated Dockerfile for cmd/kn-event-sender.
22
ARG GO_BUILDER=registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17
33
ARG GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
44

@@ -9,8 +9,8 @@ COPY . .
99

1010
ENV CGO_ENABLED=1
1111
ENV GOEXPERIMENT=strictfipsruntime
12-
# Reset the goflags to avoid the -mod=vendor flag
13-
ENV GOFLAGS=''
12+
ENV GOFLAGS='-mod=mod'
13+
ENV ENV GOFLAGS=''
1414

1515
RUN go build -tags strictfipsruntime -o /usr/bin/main ./cmd/kn-event-sender
1616

@@ -24,14 +24,14 @@ COPY LICENSE /licenses/
2424
USER 65532
2525

2626
LABEL \
27-
com.redhat.component="openshift-serverless-1-kn-event-sender-rhel8-container" \
28-
name="openshift-serverless-1-tech-preview/kn-event-sender-rhel8" \
27+
com.redhat.component="openshift-serverless-1-kn-plugin-event-kn-event-sender-rhel8-container" \
28+
name="openshift-serverless-1/kn-plugin-event-kn-event-sender-rhel8" \
2929
version=$VERSION \
30-
summary="Red Hat OpenShift Serverless 1 Kn Event Sender" \
30+
summary="Red Hat OpenShift Serverless 1 Kn Plugin Event Kn Event Sender" \
3131
maintainer="[email protected]" \
32-
description="Red Hat OpenShift Serverless 1 Kn Event Sender" \
33-
io.k8s.display-name="Red Hat OpenShift Serverless 1 Kn Event Sender" \
34-
io.k8s.description="Red Hat OpenShift Serverless Kn Event Sender" \
32+
description="Red Hat OpenShift Serverless 1 Kn Plugin Event Kn Event Sender" \
33+
io.k8s.display-name="Red Hat OpenShift Serverless 1 Kn Plugin Event Kn Event Sender" \
34+
io.k8s.description="Red Hat OpenShift Serverless Kn Plugin Event Kn Event Sender" \
3535
io.openshift.tags="kn-event-sender"
3636

3737
ENTRYPOINT ["/usr/bin/kn-event-sender"]
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# DO NOT EDIT! Generated Dockerfile for cmd/kn-event.
2+
ARG GO_BUILDER=registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17
3+
ARG GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
4+
5+
FROM $GO_BUILDER as builder
6+
7+
WORKDIR /workspace
8+
COPY . .
9+
10+
ENV CGO_ENABLED=1
11+
ENV GOEXPERIMENT=strictfipsruntime
12+
ENV GOFLAGS='-mod=mod'
13+
ENV ENV GOFLAGS=''
14+
15+
RUN go build -tags strictfipsruntime -o /usr/bin/main ./cmd/kn-event
16+
17+
FROM $GO_RUNTIME
18+
19+
ARG VERSION=knative-v1.15
20+
21+
COPY --from=builder /usr/bin/main /usr/bin/kn-event
22+
COPY LICENSE /licenses/
23+
24+
USER 65532
25+
26+
LABEL \
27+
com.redhat.component="openshift-serverless-1-kn-plugin-event-kn-event-rhel8-container" \
28+
name="openshift-serverless-1/kn-plugin-event-kn-event-rhel8" \
29+
version=$VERSION \
30+
summary="Red Hat OpenShift Serverless 1 Kn Plugin Event Kn Event" \
31+
maintainer="[email protected]" \
32+
description="Red Hat OpenShift Serverless 1 Kn Plugin Event Kn Event" \
33+
io.k8s.display-name="Red Hat OpenShift Serverless 1 Kn Plugin Event Kn Event" \
34+
io.k8s.description="Red Hat OpenShift Serverless Kn Plugin Event Kn Event" \
35+
io.openshift.tags="kn-event"
36+
37+
ENTRYPOINT ["/usr/bin/kn-event"]
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# DO NOT EDIT! Generated Dockerfile.
2+
3+
FROM src
4+
5+
RUN chmod +x vendor/k8s.io/code-generator/generate-groups.sh || true
6+
RUN chmod +x vendor/knative.dev/pkg/hack/generate-knative.sh || true
7+
RUN chmod +x vendor/k8s.io/code-generator/generate-internal-groups.sh || true

openshift/images.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
knative.dev/eventing/cmd/apiserver_receive_adapter: registry.ci.openshift.org/openshift/knative-eventing-apiserver-receive-adapter:knative-v1.15
2+
knative.dev/eventing/cmd/appender: registry.ci.openshift.org/openshift/knative-eventing-appender:knative-v1.15
3+
knative.dev/eventing/cmd/broker/filter: registry.ci.openshift.org/openshift/knative-eventing-filter:knative-v1.15
4+
knative.dev/eventing/cmd/broker/ingress: registry.ci.openshift.org/openshift/knative-eventing-ingress:knative-v1.15
5+
knative.dev/eventing/cmd/controller: registry.ci.openshift.org/openshift/knative-eventing-controller:knative-v1.15
6+
knative.dev/eventing/cmd/event_display: registry.ci.openshift.org/openshift/knative-eventing-event-display:knative-v1.15
7+
knative.dev/eventing/cmd/heartbeats: registry.ci.openshift.org/openshift/knative-eventing-heartbeats:knative-v1.15
8+
knative.dev/eventing/cmd/heartbeats_receiver: registry.ci.openshift.org/openshift/knative-eventing-heartbeats-receiver:knative-v1.15
9+
knative.dev/eventing/cmd/in_memory/channel_controller: registry.ci.openshift.org/openshift/knative-eventing-channel-controller:knative-v1.15
10+
knative.dev/eventing/cmd/in_memory/channel_dispatcher: registry.ci.openshift.org/openshift/knative-eventing-channel-dispatcher:knative-v1.15
11+
knative.dev/eventing/cmd/jobsink: registry.ci.openshift.org/openshift/knative-eventing-jobsink:knative-v1.15
12+
knative.dev/eventing/cmd/mqttsource: registry.ci.openshift.org/openshift/knative-eventing-mqttsource:knative-v1.15
13+
knative.dev/eventing/cmd/mtchannel_broker: registry.ci.openshift.org/openshift/knative-eventing-mtchannel-broker:knative-v1.15
14+
knative.dev/eventing/cmd/mtping: registry.ci.openshift.org/openshift/knative-eventing-mtping:knative-v1.15
15+
knative.dev/eventing/cmd/pong: registry.ci.openshift.org/openshift/knative-eventing-pong:knative-v1.15
16+
knative.dev/eventing/cmd/schema: registry.ci.openshift.org/openshift/knative-eventing-schema:knative-v1.15
17+
knative.dev/eventing/cmd/webhook: registry.ci.openshift.org/openshift/knative-eventing-webhook:knative-v1.15
18+
knative.dev/eventing/cmd/websocketsource: registry.ci.openshift.org/openshift/knative-eventing-websocketsource:knative-v1.15
19+
knative.dev/eventing/test/test_images/event-sender: registry.ci.openshift.org/openshift/knative-eventing-test-event-sender:knative-v1.15
20+
knative.dev/eventing/test/test_images/print: registry.ci.openshift.org/openshift/knative-eventing-test-print:knative-v1.15
21+
knative.dev/eventing/test/test_images/recordevents: registry.ci.openshift.org/openshift/knative-eventing-test-recordevents:knative-v1.15
22+
knative.dev/eventing/test/test_images/request-sender: registry.ci.openshift.org/openshift/knative-eventing-test-request-sender:knative-v1.15
23+
knative.dev/eventing/test/test_images/wathola-fetcher: registry.ci.openshift.org/openshift/knative-eventing-test-wathola-fetcher:knative-v1.15
24+
knative.dev/eventing/test/test_images/wathola-forwarder: registry.ci.openshift.org/openshift/knative-eventing-test-wathola-forwarder:knative-v1.15
25+
knative.dev/eventing/test/test_images/wathola-receiver: registry.ci.openshift.org/openshift/knative-eventing-test-wathola-receiver:knative-v1.15
26+
knative.dev/eventing/test/test_images/wathola-sender: registry.ci.openshift.org/openshift/knative-eventing-test-wathola-sender:knative-v1.15
27+
knative.dev/kn-plugin-event/cmd/kn-event: registry.ci.openshift.org/openshift/kn-plugin-event-kn-event:knative-v1.15
28+
knative.dev/kn-plugin-event/cmd/kn-event-sender: registry.ci.openshift.org/openshift/kn-plugin-event-kn-event-sender:knative-v1.15
29+
knative.dev/pkg/apiextensions/storageversion/cmd/migrate: registry.ci.openshift.org/openshift/knative-eventing-migrate:knative-v1.15
30+
knative.dev/reconciler-test/cmd/eventshub: registry.ci.openshift.org/openshift/knative-eventing-test-eventshub:knative-v1.15

0 commit comments

Comments
 (0)