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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 6 additions & 6 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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 {

0 commit comments

Comments
 (0)