Skip to content

Commit b29956d

Browse files
authored
Merge pull request #48 from arangodb/kube-arangodb
Rename repository to `kube-arangodb`
2 parents 7314042 + 970f308 commit b29956d

File tree

76 files changed

+165
-165
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+165
-165
lines changed

Jenkinsfile.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def buildCleanupSteps(String kubeConfigRoot, String kubeconfig) {
5757
pipeline {
5858
options {
5959
buildDiscarder(logRotator(daysToKeepStr: '7', numToKeepStr: '10'))
60-
lock resource: 'k8s-operator'
60+
lock resource: 'kube-arangodb'
6161
}
6262
agent any
6363
parameters {

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ VENDORDIR := $(ROOTDIR)/deps
1515

1616
ORGPATH := github.com/arangodb
1717
ORGDIR := $(GOBUILDDIR)/src/$(ORGPATH)
18-
REPONAME := k8s-operator
18+
REPONAME := kube-arangodb
1919
REPODIR := $(ORGDIR)/$(REPONAME)
2020
REPOPATH := $(ORGPATH)/$(REPONAME)
2121

@@ -154,8 +154,8 @@ update-generated: $(GOBUILDDIR)
154154
k8s-codegen \
155155
"./deps/k8s.io/code-generator/generate-groups.sh" \
156156
"all" \
157-
"github.com/arangodb/k8s-operator/pkg/generated" \
158-
"github.com/arangodb/k8s-operator/pkg/apis" \
157+
"github.com/arangodb/kube-arangodb/pkg/generated" \
158+
"github.com/arangodb/kube-arangodb/pkg/apis" \
159159
"deployment:v1alpha storage:v1alpha" \
160160
--go-header-file "./tools/codegen/boilerplate.go.txt" \
161161
$(VERIFYARGS)

main.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ import (
4545
"k8s.io/client-go/tools/leaderelection/resourcelock"
4646
"k8s.io/client-go/tools/record"
4747

48-
"github.com/arangodb/k8s-operator/pkg/client"
49-
"github.com/arangodb/k8s-operator/pkg/logging"
50-
"github.com/arangodb/k8s-operator/pkg/operator"
51-
"github.com/arangodb/k8s-operator/pkg/util/constants"
52-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
53-
"github.com/arangodb/k8s-operator/pkg/util/retry"
48+
"github.com/arangodb/kube-arangodb/pkg/client"
49+
"github.com/arangodb/kube-arangodb/pkg/logging"
50+
"github.com/arangodb/kube-arangodb/pkg/operator"
51+
"github.com/arangodb/kube-arangodb/pkg/util/constants"
52+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
53+
"github.com/arangodb/kube-arangodb/pkg/util/retry"
5454
)
5555

5656
const (

pkg/apis/deployment/v1alpha/authentication_spec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ package v1alpha
2525
import (
2626
"github.com/pkg/errors"
2727

28-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
28+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2929
)
3030

3131
// AuthenticationSpec holds authentication specific configuration settings

pkg/apis/deployment/v1alpha/monitoring_spec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
package v1alpha
2424

2525
import (
26-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
26+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2727
)
2828

2929
// MonitoringSpec holds monitoring specific configuration settings

pkg/apis/deployment/v1alpha/rocksdb_spec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
package v1alpha
2424

2525
import (
26-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
26+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2727
)
2828

2929
// RocksDBEncryptionSpec holds rocksdb encryption at rest specific configuration settings

pkg/apis/deployment/v1alpha/tls_spec.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import (
2727
"net"
2828
"time"
2929

30-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
31-
"github.com/arangodb/k8s-operator/pkg/util/validation"
30+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
31+
"github.com/arangodb/kube-arangodb/pkg/util/validation"
3232
)
3333

3434
const (

pkg/apis/storage/v1alpha/storage_class_spec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
package v1alpha
2424

2525
import (
26-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
26+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2727
)
2828

2929
// StorageClassSpec contains specification for create StorageClass.

pkg/client/client.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import (
2626
"github.com/pkg/errors"
2727
"k8s.io/client-go/rest"
2828

29-
"github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned"
30-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
29+
"github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned"
30+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
3131
)
3232

3333
var (

pkg/deployment/client_cache.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ import (
3030
"k8s.io/client-go/kubernetes"
3131

3232
driver "github.com/arangodb/go-driver"
33-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
34-
"github.com/arangodb/k8s-operator/pkg/util/arangod"
33+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
34+
"github.com/arangodb/kube-arangodb/pkg/util/arangod"
3535
)
3636

3737
type clientCache struct {

pkg/deployment/deployment.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ import (
3535
"k8s.io/client-go/kubernetes"
3636
corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
3737

38-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
39-
"github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned"
40-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
41-
"github.com/arangodb/k8s-operator/pkg/util/retry"
42-
"github.com/arangodb/k8s-operator/pkg/util/trigger"
38+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
39+
"github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned"
40+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
41+
"github.com/arangodb/kube-arangodb/pkg/util/retry"
42+
"github.com/arangodb/kube-arangodb/pkg/util/trigger"
4343
)
4444

4545
// Config holds configuration settings for a Deployment

pkg/deployment/members.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ import (
2626
"fmt"
2727
"strings"
2828

29-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
29+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
3030
"github.com/dchest/uniuri"
3131

32-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
32+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
3333
)
3434

3535
// createInitialMembers creates all members needed for the initial state of the deployment.

pkg/deployment/plan_builder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
package deployment
2424

2525
import (
26-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
26+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
2727
"github.com/rs/zerolog"
2828
)
2929

pkg/deployment/plan_builder_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"github.com/stretchr/testify/assert"
3030
"github.com/stretchr/testify/require"
3131

32-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
32+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
3333
)
3434

3535
// TestCreatePlanSingleScale creates a `single` deployment to test the creating of scaling plan.

pkg/deployment/plan_executor.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import (
2828

2929
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3030

31-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
32-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
31+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
32+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
3333
)
3434

3535
// executePlan tries to execute the plan as far as possible.

pkg/deployment/pod_creator.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ import (
3030
"strconv"
3131
"strings"
3232

33-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
34-
"github.com/arangodb/k8s-operator/pkg/util/arangod"
35-
"github.com/arangodb/k8s-operator/pkg/util/constants"
36-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
33+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
34+
"github.com/arangodb/kube-arangodb/pkg/util/arangod"
35+
"github.com/arangodb/kube-arangodb/pkg/util/constants"
36+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
3737
"github.com/pkg/errors"
3838
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3939
)

pkg/deployment/pod_creator_agent_args_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"github.com/stretchr/testify/assert"
2929
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3030

31-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
31+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
3232
)
3333

3434
// TestCreateArangodArgsAgent tests createArangodArgs for agent.

pkg/deployment/pod_creator_coordinator_args_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"github.com/stretchr/testify/assert"
2929
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3030

31-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
31+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
3232
)
3333

3434
// TestCreateArangodArgsCoordinator tests createArangodArgs for coordinator.

pkg/deployment/pod_creator_dbserver_args_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"github.com/stretchr/testify/assert"
2929
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3030

31-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
31+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
3232
)
3333

3434
// TestCreateArangodArgsDBServer tests createArangodArgs for dbserver.

pkg/deployment/pod_creator_single_args_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727

2828
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2929

30-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
30+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
3131
"github.com/stretchr/testify/assert"
3232
)
3333

pkg/deployment/pod_inspector.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
package deployment
2424

2525
import (
26-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
26+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2727
"k8s.io/api/core/v1"
2828

29-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
30-
"github.com/arangodb/k8s-operator/pkg/metrics"
29+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
30+
"github.com/arangodb/kube-arangodb/pkg/metrics"
3131
)
3232

3333
var (

pkg/deployment/pvcs.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
package deployment
2424

2525
import (
26-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
26+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
2727

28-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
28+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2929
)
3030

3131
// ensurePVCs creates all PVC's listed in member status

pkg/deployment/secrets.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ import (
2929

3030
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3131

32-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
33-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
32+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
33+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
3434
)
3535

3636
// createSecrets creates all secrets needed to run the given deployment

pkg/deployment/services.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
package deployment
2424

2525
import (
26-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
27-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
26+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
27+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
2828
)
2929

3030
// createServices creates all services needed to service the given deployment

pkg/deployment/tls.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ import (
3232
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3333
"k8s.io/client-go/kubernetes/typed/core/v1"
3434

35-
api "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
36-
"github.com/arangodb/k8s-operator/pkg/util/k8sutil"
35+
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
36+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
3737
)
3838

3939
const (

pkg/generated/clientset/versioned/clientset.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
package versioned
2121

2222
import (
23-
databasev1alpha "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/typed/deployment/v1alpha"
24-
storagev1alpha "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/typed/storage/v1alpha"
23+
databasev1alpha "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/typed/deployment/v1alpha"
24+
storagev1alpha "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/typed/storage/v1alpha"
2525
glog "github.com/golang/glog"
2626
discovery "k8s.io/client-go/discovery"
2727
rest "k8s.io/client-go/rest"

pkg/generated/clientset/versioned/fake/clientset_generated.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
package fake
2121

2222
import (
23-
clientset "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned"
24-
databasev1alpha "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/typed/deployment/v1alpha"
25-
fakedatabasev1alpha "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/typed/deployment/v1alpha/fake"
26-
storagev1alpha "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/typed/storage/v1alpha"
27-
fakestoragev1alpha "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/typed/storage/v1alpha/fake"
23+
clientset "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned"
24+
databasev1alpha "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/typed/deployment/v1alpha"
25+
fakedatabasev1alpha "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/typed/deployment/v1alpha/fake"
26+
storagev1alpha "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/typed/storage/v1alpha"
27+
fakestoragev1alpha "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/typed/storage/v1alpha/fake"
2828
"k8s.io/apimachinery/pkg/runtime"
2929
"k8s.io/apimachinery/pkg/watch"
3030
"k8s.io/client-go/discovery"

pkg/generated/clientset/versioned/fake/register.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
package fake
2121

2222
import (
23-
databasev1alpha "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
24-
storagev1alpha "github.com/arangodb/k8s-operator/pkg/apis/storage/v1alpha"
23+
databasev1alpha "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
24+
storagev1alpha "github.com/arangodb/kube-arangodb/pkg/apis/storage/v1alpha"
2525
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2626
runtime "k8s.io/apimachinery/pkg/runtime"
2727
schema "k8s.io/apimachinery/pkg/runtime/schema"

pkg/generated/clientset/versioned/scheme/register.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
package scheme
2121

2222
import (
23-
databasev1alpha "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
24-
storagev1alpha "github.com/arangodb/k8s-operator/pkg/apis/storage/v1alpha"
23+
databasev1alpha "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
24+
storagev1alpha "github.com/arangodb/kube-arangodb/pkg/apis/storage/v1alpha"
2525
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2626
runtime "k8s.io/apimachinery/pkg/runtime"
2727
schema "k8s.io/apimachinery/pkg/runtime/schema"

pkg/generated/clientset/versioned/typed/deployment/v1alpha/arangodeployment.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
package v1alpha
2121

2222
import (
23-
v1alpha "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
24-
scheme "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/scheme"
23+
v1alpha "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
24+
scheme "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/scheme"
2525
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2626
types "k8s.io/apimachinery/pkg/types"
2727
watch "k8s.io/apimachinery/pkg/watch"

pkg/generated/clientset/versioned/typed/deployment/v1alpha/deployment_client.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
package v1alpha
2121

2222
import (
23-
v1alpha "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
24-
"github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/scheme"
23+
v1alpha "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
24+
"github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/scheme"
2525
serializer "k8s.io/apimachinery/pkg/runtime/serializer"
2626
rest "k8s.io/client-go/rest"
2727
)

pkg/generated/clientset/versioned/typed/deployment/v1alpha/fake/fake_arangodeployment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package fake
2121

2222
import (
23-
v1alpha "github.com/arangodb/k8s-operator/pkg/apis/deployment/v1alpha"
23+
v1alpha "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
2424
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2525
labels "k8s.io/apimachinery/pkg/labels"
2626
schema "k8s.io/apimachinery/pkg/runtime/schema"

pkg/generated/clientset/versioned/typed/deployment/v1alpha/fake/fake_deployment_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package fake
2121

2222
import (
23-
v1alpha "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/typed/deployment/v1alpha"
23+
v1alpha "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/typed/deployment/v1alpha"
2424
rest "k8s.io/client-go/rest"
2525
testing "k8s.io/client-go/testing"
2626
)

pkg/generated/clientset/versioned/typed/storage/v1alpha/arangolocalstorage.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
package v1alpha
2121

2222
import (
23-
v1alpha "github.com/arangodb/k8s-operator/pkg/apis/storage/v1alpha"
24-
scheme "github.com/arangodb/k8s-operator/pkg/generated/clientset/versioned/scheme"
23+
v1alpha "github.com/arangodb/kube-arangodb/pkg/apis/storage/v1alpha"
24+
scheme "github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned/scheme"
2525
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2626
types "k8s.io/apimachinery/pkg/types"
2727
watch "k8s.io/apimachinery/pkg/watch"

pkg/generated/clientset/versioned/typed/storage/v1alpha/fake/fake_arangolocalstorage.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package fake
2121

2222
import (
23-
v1alpha "github.com/arangodb/k8s-operator/pkg/apis/storage/v1alpha"
23+
v1alpha "github.com/arangodb/kube-arangodb/pkg/apis/storage/v1alpha"
2424
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2525
labels "k8s.io/apimachinery/pkg/labels"
2626
schema "k8s.io/apimachinery/pkg/runtime/schema"

0 commit comments

Comments
 (0)