@@ -31,50 +31,39 @@ import (
31
31
"strings"
32
32
"time"
33
33
34
- "github.com/arangodb/kube-arangodb/pkg/util/globals"
35
-
36
- "github.com/gin-gonic/gin"
37
-
38
- operatorHTTP "github.com/arangodb/kube-arangodb/pkg/util/http"
39
-
40
- "github.com/arangodb/kube-arangodb/pkg/version"
41
-
42
- "github.com/arangodb/kube-arangodb/pkg/operator/scope"
43
-
44
- "github.com/arangodb/kube-arangodb/pkg/deployment/features"
45
-
46
- "github.com/rs/zerolog/log"
47
-
48
34
deploymentApi "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1"
49
-
35
+ "github.com/arangodb/kube-arangodb/pkg/crd"
36
+ "github.com/arangodb/kube-arangodb/pkg/deployment/features"
37
+ "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/scheme"
38
+ "github.com/arangodb/kube-arangodb/pkg/logging"
39
+ "github.com/arangodb/kube-arangodb/pkg/operator"
40
+ "github.com/arangodb/kube-arangodb/pkg/operator/scope"
41
+ "github.com/arangodb/kube-arangodb/pkg/server"
50
42
"github.com/arangodb/kube-arangodb/pkg/util"
51
-
43
+ "github.com/arangodb/kube-arangodb/pkg/util/constants"
52
44
utilsError "github.com/arangodb/kube-arangodb/pkg/util/errors"
45
+ "github.com/arangodb/kube-arangodb/pkg/util/globals"
46
+ operatorHTTP "github.com/arangodb/kube-arangodb/pkg/util/http"
47
+ "github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
48
+ "github.com/arangodb/kube-arangodb/pkg/util/kclient"
49
+ "github.com/arangodb/kube-arangodb/pkg/util/probe"
50
+ "github.com/arangodb/kube-arangodb/pkg/util/retry"
51
+ "github.com/arangodb/kube-arangodb/pkg/version"
53
52
53
+ "github.com/gin-gonic/gin"
54
54
"github.com/pkg/errors"
55
55
"github.com/rs/zerolog"
56
+ "github.com/rs/zerolog/log"
56
57
"github.com/spf13/cobra"
57
58
flag "github.com/spf13/pflag"
58
59
appsv1 "k8s.io/api/apps/v1"
60
+ v1 "k8s.io/api/core/v1"
59
61
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
60
62
"k8s.io/apimachinery/pkg/runtime"
61
63
"k8s.io/client-go/kubernetes"
62
64
v1core "k8s.io/client-go/kubernetes/typed/core/v1"
63
65
"k8s.io/client-go/tools/record"
64
-
65
- v1 "k8s.io/api/core/v1"
66
66
"k8s.io/klog"
67
-
68
- "github.com/arangodb/kube-arangodb/pkg/crd"
69
- "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/scheme"
70
- "github.com/arangodb/kube-arangodb/pkg/logging"
71
- "github.com/arangodb/kube-arangodb/pkg/operator"
72
- "github.com/arangodb/kube-arangodb/pkg/server"
73
- "github.com/arangodb/kube-arangodb/pkg/util/constants"
74
- "github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
75
- "github.com/arangodb/kube-arangodb/pkg/util/kclient"
76
- "github.com/arangodb/kube-arangodb/pkg/util/probe"
77
- "github.com/arangodb/kube-arangodb/pkg/util/retry"
78
67
)
79
68
80
69
const (
0 commit comments