Skip to content

Commit 09496e4

Browse files
committed
Update to 1.23 go version
1 parent 2018f8a commit 09496e4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.ci.openshift.org/openshift/release:golang-1.22 AS builder
1+
FROM registry.ci.openshift.org/openshift/release:golang-1.23 AS builder
22

33
RUN mkdir -p /workdir
44
WORKDIR /workdir
@@ -8,7 +8,7 @@ COPY . .
88
RUN make build
99

1010
####
11-
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
11+
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5-1742914212
1212

1313
ENV USER_UID=1001 \
1414
USER_NAME=webhooks

test/e2e/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.23-openshift-4.19 as builder
2-
WORKDIR /go/src/github.com/openshift/configure-alertmanager-operator/
2+
WORKDIR /go/src/github.com/openshift/managed-cluster-validating-webhooks
33
COPY . .
4-
RUN CGO_ENABLED=0 GOFLAGS="-mod=mod" go test ./test/e2e -v -c --tags=osde2e -o /e2e.test
4+
RUN CGO_ENABLED=0 GOFLAGS="-mod=mod" go test ./test/e2e -v -c --tags=osde2e -o /harness.test
55

66
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
7-
COPY --from=builder ./e2e.test e2e.test
8-
ENTRYPOINT [ "/e2e.test" ]
7+
COPY --from=builder ./harness.test harness.test
8+
ENTRYPOINT [ "/harness.test" ]

test/e2e/test-harness-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ objects:
3131
- apiVersion: batch/v1
3232
kind: Job
3333
metadata:
34-
name: osde2e-configure-alertmanager-operator-${IMAGE_TAG}-${JOBID}
34+
name: validation-webhook-${IMAGE_TAG}-${JOBID}
3535
spec:
3636
backoffLimit: 0
3737
template:

0 commit comments

Comments
 (0)