Skip to content

Commit 376bc01

Browse files
jayasheelankumarl-technicore
authored andcommitted
Address the import ordering
1 parent 2b6ba03 commit 376bc01

File tree

1 file changed

+4
-4
lines changed
  • cmd/oci-cloud-controller-manager

1 file changed

+4
-4
lines changed

cmd/oci-cloud-controller-manager/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ package main
1717
import (
1818
goflag "flag"
1919
"fmt"
20-
"k8s.io/apimachinery/pkg/util/wait"
21-
cloudprovider "k8s.io/cloud-provider"
22-
"k8s.io/cloud-provider/app/config"
23-
"k8s.io/cloud-provider/options"
2420
"math/rand"
2521
"os"
2622
"time"
@@ -29,7 +25,11 @@ import (
2925
"github.com/oracle/oci-cloud-controller-manager/pkg/logging"
3026
"github.com/spf13/pflag"
3127
"go.uber.org/zap"
28+
"k8s.io/apimachinery/pkg/util/wait"
29+
cloudprovider "k8s.io/cloud-provider"
3230
"k8s.io/cloud-provider/app"
31+
"k8s.io/cloud-provider/app/config"
32+
"k8s.io/cloud-provider/options"
3333
cliflag "k8s.io/component-base/cli/flag"
3434
"k8s.io/component-base/logs"
3535
_ "k8s.io/component-base/metrics/prometheus/restclient" // for client metric registration

0 commit comments

Comments
 (0)