Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1907613: operator: remove odicdiscoveryendpoint controller #277

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ require (
github.com/onsi/ginkgo v1.14.0 // indirect
github.com/openshift/api v0.0.0-20200901182017-7ac89ba6b971
github.com/openshift/build-machinery-go v0.0.0-20200819073603-48aa266c95f7
github.com/openshift/client-go v0.0.0-20200827190008-3062137373b5
github.com/openshift/library-go v0.0.0-20200911100307-610c6e9e90b8
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.7.1
Expand All @@ -42,7 +41,6 @@ require (
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013
google.golang.org/grpc v1.28.0
gopkg.in/square/go-jose.v2 v2.2.2
k8s.io/api v0.19.0
k8s.io/apimachinery v0.19.0
k8s.io/client-go v0.19.0
Expand Down
22 changes: 0 additions & 22 deletions manifests/05-s3-credentialsrequest.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions pkg/operator/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import (
"github.com/openshift/cloud-credential-operator/pkg/operator/credentialsrequest"
"github.com/openshift/cloud-credential-operator/pkg/operator/credentialsrequest/actuator"
"github.com/openshift/cloud-credential-operator/pkg/operator/metrics"
"github.com/openshift/cloud-credential-operator/pkg/operator/oidcdiscoveryendpoint"
"github.com/openshift/cloud-credential-operator/pkg/operator/platform"
"github.com/openshift/cloud-credential-operator/pkg/operator/secretannotator"
"github.com/openshift/cloud-credential-operator/pkg/ovirt"
Expand All @@ -50,7 +49,6 @@ func init() {
AddToManagerFuncs = append(AddToManagerFuncs, metrics.Add)
AddToManagerFuncs = append(AddToManagerFuncs, secretannotator.Add)
AddToManagerFuncs = append(AddToManagerFuncs, awspodidentity.Add)
AddToManagerFuncs = append(AddToManagerFuncs, oidcdiscoveryendpoint.Add)
AddToManagerWithActuatorFuncs = append(AddToManagerWithActuatorFuncs, credentialsrequest.AddWithActuator)
}

Expand Down