Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile.rhel
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.21-openshift-4.16 AS builder
WORKDIR /go/src/github.com/openshift/openshift-controller-manager
COPY . .
RUN GO_COMPLIANCE_INFO=0 make build --warn-undefined-variables
RUN make build --warn-undefined-variables

FROM registry.ci.openshift.org/ocp/4.16:base-rhel9
COPY --from=builder /go/src/github.com/openshift/openshift-controller-manager/openshift-controller-manager /usr/bin/
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/controller/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var ControllerInitializers = map[openshiftcontrolplanev1.OpenShiftControllerName

openshiftcontrolplanev1.OpenShiftDefaultRoleBindingsController: RunDefaultRoleBindingController,

openshiftcontrolplanev1.OpenShiftServiceAccountPullSecretsController: RunInternalImageRegistryPullSecretsController,
openshiftcontrolplanev1.OpenShiftServiceAccountPullSecretsController: RunServiceAccountPullSecretsController,
openshiftcontrolplanev1.OpenShiftOriginNamespaceController: RunOriginNamespaceController,

openshiftcontrolplanev1.OpenShiftBuilderServiceAccountController: RunBuilderServiceAccountController,
Expand Down
28 changes: 0 additions & 28 deletions pkg/cmd/controller/imageregistry.go

This file was deleted.

18 changes: 0 additions & 18 deletions pkg/internalregistry/controllers/annotations.go

This file was deleted.

Loading