Skip to content

Commit 4529982

Browse files
Merge pull request #2533 from machine424/fddrer
OCPBUGS-45389: update image to be consistent with ART for 4.19
2 parents 080a856 + 5bf0a32 commit 4529982

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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-9-release-golang-1.22-openshift-4.18
4+
tag: rhel-9-release-golang-1.23-openshift-4.19

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# When bumping the Go version, don't forget to update the configuration of the
22
# CI jobs in openshift/release.
3-
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.18 AS builder
3+
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 AS builder
44
WORKDIR /go/src/github.com/openshift/cluster-monitoring-operator
55
COPY . .
66
ENV GOFLAGS="-mod=vendor"
77
RUN make operator-no-deps
88

9-
FROM registry.ci.openshift.org/ocp/4.18:base-rhel9
9+
FROM registry.ci.openshift.org/ocp/4.19:base-rhel9
1010
LABEL io.k8s.display-name="OpenShift cluster-monitoring-operator" \
1111
io.k8s.description="This is a component of OpenShift and manages the lifecycle of the Prometheus based cluster monitoring stack." \
1212
io.openshift.tags="openshift" \
@@ -19,4 +19,3 @@ COPY manifests /manifests
1919
COPY assets /assets
2020
USER 1001
2121
ENTRYPOINT ["/usr/bin/operator"]
22-

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ GOJSONTOYAML_BIN=$(BIN_DIR)/gojsontoyaml
3838
JSONNET_BIN=$(BIN_DIR)/jsonnet
3939
JSONNETFMT_BIN=$(BIN_DIR)/jsonnetfmt
4040
GOLANGCI_LINT_BIN=$(BIN_DIR)/golangci-lint
41-
GOLANGCI_LINT_VERSION=v1.55.2
41+
GOLANGCI_LINT_VERSION=v1.62.2
4242
PROMTOOL_BIN=$(BIN_DIR)/promtool
4343
DOCGEN_BIN=$(BIN_DIR)/docgen
4444
MISSPELL_BIN=$(BIN_DIR)/misspell

hack/docgen/model/parser.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ func astFrom(filePath string) (*doc.Package, error) {
114114
}
115115

116116
m[filePath] = f
117+
//nolint:staticcheck // SA1019 ast.NewPackage is deprecated, will migrate later.
117118
apkg, _ := ast.NewPackage(fset, m, nil, nil)
118119

119120
return doc.New(apkg, "", 0), nil

0 commit comments

Comments
 (0)