Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions MAINTAINERS.md

This file was deleted.

6 changes: 3 additions & 3 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ layout:
- go.kubebuilder.io/v3
multigroup: true
projectName: druid-operator
repo: github.com/datainfrahq/druid-operator
repo: github.com/apache/druid-operator
resources:
- api:
crdVersion: v1
Expand All @@ -16,7 +16,7 @@ resources:
domain: apache.org
group: druid
kind: Druid
path: github.com/datainfrahq/druid-operator/apis/druid/v1alpha1
path: github.com/apache/druid-operator/apis/druid/v1alpha1
version: v1alpha1
- api:
crdVersion: v1
Expand All @@ -25,6 +25,6 @@ resources:
domain: apache.org
group: druid
kind: DruidIngestion
path: github.com/datainfrahq/druid-operator/apis/druid/v1alpha1
path: github.com/apache/druid-operator/apis/druid/v1alpha1
version: v1alpha1
version: "3"
4 changes: 2 additions & 2 deletions apis/druid/v1alpha1/druid_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe the license checks on https://github.com/apache/druid project would flag whitespace inconsistencies as well.


Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -21,7 +21,7 @@ package v1alpha1
import (
"encoding/json"

druidapi "github.com/datainfrahq/druid-operator/pkg/druidapi"
druidapi "github.com/apache/druid-operator/pkg/druidapi"
appsv1 "k8s.io/api/apps/v1"
autoscalev2 "k8s.io/api/autoscaling/v2"
v1 "k8s.io/api/core/v1"
Expand Down
4 changes: 2 additions & 2 deletions apis/druid/v1alpha1/druidingestion_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -19,7 +19,7 @@ under the License.
package v1alpha1

import (
druidapi "github.com/datainfrahq/druid-operator/pkg/druidapi"
druidapi "github.com/apache/druid-operator/pkg/druidapi"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
Expand Down
2 changes: 1 addition & 1 deletion chart/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# under the License.
#

Refer to https://github.com/datainfrahq/druid-operator/blob/master/docs/README.md to get started.
Refer to https://github.com/apache/druid-operator/blob/master/docs/README.md to get started.
4 changes: 2 additions & 2 deletions controllers/druid/additional_containers.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -21,7 +21,7 @@ package druid
import (
"fmt"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
v1 "k8s.io/api/core/v1"
)

Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/additional_containers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -22,7 +22,7 @@ import (
"fmt"
"time"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
v1 "k8s.io/api/apps/v1"
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -22,7 +22,7 @@ import (
"context"
"fmt"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
Expand Down
6 changes: 3 additions & 3 deletions controllers/druid/deep_storage_dep_mgmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -23,8 +23,8 @@ import (
"fmt"
"reflect"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/datainfrahq/druid-operator/controllers/druid/ext"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/controllers/druid/ext"
)

var deepStorageExtTypes = map[string]reflect.Type{}
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/druid_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -33,7 +33,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/reconcile"

druidv1alpha1 "github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
druidv1alpha1 "github.com/apache/druid-operator/apis/druid/v1alpha1"
)

// DruidReconciler reconciles a Druid object
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/druid_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -22,7 +22,7 @@ import (
"fmt"
"time"

druidv1alpha1 "github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
druidv1alpha1 "github.com/apache/druid-operator/apis/druid/v1alpha1"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
appsv1 "k8s.io/api/apps/v1"
Expand Down
10 changes: 5 additions & 5 deletions controllers/druid/dynamic_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -23,10 +23,10 @@ import (
"fmt"
"net/http"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
druidapi "github.com/datainfrahq/druid-operator/pkg/druidapi"
internalhttp "github.com/datainfrahq/druid-operator/pkg/http"
"github.com/datainfrahq/druid-operator/pkg/util"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
druidapi "github.com/apache/druid-operator/pkg/druidapi"
internalhttp "github.com/apache/druid-operator/pkg/http"
"github.com/apache/druid-operator/pkg/util"
"sigs.k8s.io/controller-runtime/pkg/client"
)

Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/finalizers.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -23,7 +23,7 @@ import (
"encoding/json"
"fmt"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
appsv1 "k8s.io/api/apps/v1"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/equality"
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/finalizers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -21,7 +21,7 @@ package druid
import (
"time"

druidv1alpha1 "github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
druidv1alpha1 "github.com/apache/druid-operator/apis/druid/v1alpha1"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"k8s.io/apimachinery/pkg/types"
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -33,7 +33,7 @@ import (
autoscalev2 "k8s.io/api/autoscaling/v2"
networkingv1 "k8s.io/api/networking/v1"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
appsv1 "k8s.io/api/apps/v1"
v1 "k8s.io/api/core/v1"
policyv1 "k8s.io/api/policy/v1"
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -30,7 +30,7 @@ import (
corev1 "k8s.io/api/core/v1"
policyv1 "k8s.io/api/policy/v1"

druidv1alpha1 "github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
druidv1alpha1 "github.com/apache/druid-operator/apis/druid/v1alpha1"
)

// +kubebuilder:docs-gen:collapse=Imports
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -23,7 +23,7 @@ import (
"fmt"
"reflect"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
appsv1 "k8s.io/api/apps/v1"
v1 "k8s.io/api/core/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
Expand Down
6 changes: 3 additions & 3 deletions controllers/druid/metadata_store_dep_mgmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -23,8 +23,8 @@ import (
"fmt"
"reflect"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/datainfrahq/druid-operator/controllers/druid/ext"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/controllers/druid/ext"
)

var metadataStoreExtTypes = map[string]reflect.Type{}
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/ordering.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -18,7 +18,7 @@ under the License.
*/
package druid

import "github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
import "github.com/apache/druid-operator/apis/druid/v1alpha1"

var (
druidServicesOrder = []string{historical, overlord, middleManager, indexer, broker, coordinator, router}
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/ordering_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -21,7 +21,7 @@ package druid
import (
"time"

druidv1alpha1 "github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
druidv1alpha1 "github.com/apache/druid-operator/apis/druid/v1alpha1"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"k8s.io/apimachinery/pkg/types"
Expand Down
4 changes: 2 additions & 2 deletions controllers/druid/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
Expand All @@ -24,7 +24,7 @@ import (
"fmt"
"reflect"

"github.com/datainfrahq/druid-operator/apis/druid/v1alpha1"
"github.com/apache/druid-operator/apis/druid/v1alpha1"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
Expand Down
Loading