Skip to content

Commit 4e3e7fd

Browse files
Merge pull request #596 from stlaz/413_art_image
[4.13] OCPBUGS-6189: art image update
2 parents e2b6b51 + 2eff502 commit 4e3e7fd

File tree

6 files changed

+18
-15
lines changed

6 files changed

+18
-15
lines changed

.ci-operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
build_root_image:
22
name: release
33
namespace: openshift
4-
tag: rhel-8-release-golang-1.18-openshift-4.12
4+
tag: rhel-8-release-golang-1.19-openshift-4.13

Dockerfile.rhel7

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.18-openshift-4.12 AS builder
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.19-openshift-4.13 AS builder
22
WORKDIR /go/src/github.com/openshift/cluster-authentication-operator
33
COPY . .
44
ENV GO_PACKAGE github.com/openshift/cluster-authentication-operator
55
RUN go build -ldflags "-X $GO_PACKAGE/pkg/version.versionFromGit=$(git describe --long --tags --abbrev=7 --match 'v[0-9]*')" -tags="ocp" -o authentication-operator ./cmd/authentication-operator
66

7-
FROM registry.ci.openshift.org/ocp/4.12:base
7+
FROM registry.ci.openshift.org/ocp/4.13:base
88
COPY --from=builder /go/src/github.com/openshift/cluster-authentication-operator/authentication-operator /usr/bin/
99
COPY manifests /manifests
1010
COPY vendor/github.com/openshift/api/operator/v1/0000_50_cluster-authentication-operator_01_config.crd.yaml /manifests/01_config.crd.yaml

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openshift/cluster-authentication-operator
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/davecgh/go-spew v1.1.1

pkg/controllers/common/conditions.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ type ControllerProgressingError struct {
2424
// The error allows configuring `maxAge` which determines for how long can an
2525
// this error appear in the operator's status before it goes Degraded:
2626
// maxAge:
27-
// <= 0 - never go Degraded
28-
// > 0 - go Degraded if the controller was progressing with this error longer than `maxAge`
27+
//
28+
// <= 0 - never go Degraded
29+
// > 0 - go Degraded if the controller was progressing with this error longer than `maxAge`
2930
func NewControllerProgressingError(reason string, err error, maxAge time.Duration) *ControllerProgressingError {
3031
return &ControllerProgressingError{
3132
reason: reason,

pkg/controllers/metadata/metadata_controller.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ func (c *metadataController) handleOAuthMetadataConfigMap(ctx context.Context, r
113113
}
114114

115115
// FIXME: we need to handle Authentication config object properly, namely:
116-
// - honor Type field being set to none and don't create the OSIN
117-
// deployment in that case
118-
// - the WebhookTokenAuthenticators field is currently not being handled
119-
// anywhere
116+
// - honor Type field being set to none and don't create the OSIN
117+
// deployment in that case
118+
// - the WebhookTokenAuthenticators field is currently not being handled
119+
// anywhere
120120
//
121121
// Note that the configMap from the reference in the OAuthMetadata field is
122122
// used to fill the data in the /.well-known/oauth-authorization-server

pkg/operator/assets/bindata.go

Lines changed: 7 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)