Skip to content

Commit

Permalink
chore: cleanup code (#1238)
Browse files Browse the repository at this point in the history
- no need to add ingresscontroller into runtime again
- it has been handled in main.go

Signed-off-by: Wen Zhou <[email protected]>
  • Loading branch information
zdtsw authored Sep 16, 2024
1 parent fde5d69 commit ac7bb50
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pkg/cluster/cert.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import (
corev1 "k8s.io/api/core/v1"
k8serr "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
)

Expand Down Expand Up @@ -126,8 +125,6 @@ func generateCertificate(addr string) ([]byte, []byte, error) {

// PropagateDefaultIngressCertificate copies ingress cert secrets from openshift-ingress ns to given namespace.
func PropagateDefaultIngressCertificate(ctx context.Context, c client.Client, secretName, namespace string) error {
// Add IngressController to scheme
runtime.Must(operatorv1.Install(c.Scheme()))
defaultIngressCtrl, err := FindAvailableIngressController(ctx, c)
if err != nil {
return fmt.Errorf("failed to get ingress controller: %w", err)
Expand Down

0 comments on commit ac7bb50

Please sign in to comment.