Skip to content

Commit 30ff629

Browse files
vertex451Artem Shcherbatiuk
andauthored
chore: renamed module to kubernetes-graphql-gateway (#114)
Co-authored-by: Artem Shcherbatiuk <[email protected]>
1 parent 3288d43 commit 30ff629

File tree

19 files changed

+36
-36
lines changed

19 files changed

+36
-36
lines changed

.github/workflows/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
useTask: true
2020
useLocalCoverageConfig: true
21-
imageTagName: ghcr.io/openmfp/crd-gql-gateway
21+
imageTagName: ghcr.io/openmfp/kubernetes-graphql-gateway
2222
coverageThreasholdFile: 0
2323
coverageThresholdPackage: 0
2424
coverageThreasholdTotal: 49

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ tasks:
3535
- go build ./...
3636
docker:
3737
cmds:
38-
- docker build -t ghcr.io/openmfp/crd-gql-gateway .
38+
- docker build -t ghcr.io/openmfp/kubernetes-graphql-gateway .
3939
## Testing
4040
fmt:
4141
cmds:

cmd/gateway.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414

1515
"github.com/openmfp/golang-commons/logger"
1616

17-
appCfg "github.com/openmfp/crd-gql-gateway/gateway/config"
18-
"github.com/openmfp/crd-gql-gateway/gateway/manager"
17+
appCfg "github.com/openmfp/kubernetes-graphql-gateway/gateway/config"
18+
"github.com/openmfp/kubernetes-graphql-gateway/gateway/manager"
1919
)
2020

2121
var gatewayCmd = &cobra.Command{

cmd/listener.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
2323
"sigs.k8s.io/controller-runtime/pkg/webhook"
2424

25-
"github.com/openmfp/crd-gql-gateway/listener/flags"
26-
"github.com/openmfp/crd-gql-gateway/listener/kcp"
25+
"github.com/openmfp/kubernetes-graphql-gateway/listener/flags"
26+
"github.com/openmfp/kubernetes-graphql-gateway/listener/kcp"
2727
// +kubebuilder:scaffold:imports
2828
)
2929

cmd/start_deprecated.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/graphql-go/handler"
99
"github.com/spf13/cobra"
1010

11-
"github.com/openmfp/crd-gql-gateway/deprecated"
11+
"github.com/openmfp/kubernetes-graphql-gateway/deprecated"
1212
"k8s.io/apimachinery/pkg/runtime"
1313
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
1414
controllerruntime "sigs.k8s.io/controller-runtime"

gateway/manager/manager.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ import (
1616
"github.com/graphql-go/graphql"
1717
"github.com/graphql-go/handler"
1818
"github.com/kcp-dev/logicalcluster/v3"
19-
appConfig "github.com/openmfp/crd-gql-gateway/gateway/config"
20-
"github.com/openmfp/crd-gql-gateway/gateway/resolver"
21-
"github.com/openmfp/crd-gql-gateway/gateway/schema"
2219
"github.com/openmfp/golang-commons/logger"
20+
appConfig "github.com/openmfp/kubernetes-graphql-gateway/gateway/config"
21+
"github.com/openmfp/kubernetes-graphql-gateway/gateway/resolver"
22+
"github.com/openmfp/kubernetes-graphql-gateway/gateway/schema"
2323
"k8s.io/client-go/rest"
2424
"sigs.k8s.io/controller-runtime/pkg/client"
2525
"sigs.k8s.io/controller-runtime/pkg/kcp"

gateway/resolver/resolver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"testing"
77

88
"github.com/graphql-go/graphql"
9-
"github.com/openmfp/crd-gql-gateway/gateway/resolver/mocks"
109
"github.com/openmfp/golang-commons/logger"
10+
"github.com/openmfp/kubernetes-graphql-gateway/gateway/resolver/mocks"
1111
"github.com/stretchr/testify/assert"
1212
"github.com/stretchr/testify/mock"
1313
"github.com/stretchr/testify/require"

gateway/schema/custom_queries.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package schema
22

33
import (
44
"github.com/graphql-go/graphql"
5-
"github.com/openmfp/crd-gql-gateway/gateway/resolver"
5+
"github.com/openmfp/kubernetes-graphql-gateway/gateway/resolver"
66
)
77

88
const (

gateway/schema/schema.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"github.com/graphql-go/graphql"
1313
"k8s.io/apimachinery/pkg/runtime/schema"
1414

15-
"github.com/openmfp/crd-gql-gateway/common"
16-
"github.com/openmfp/crd-gql-gateway/gateway/resolver"
1715
"github.com/openmfp/golang-commons/logger"
16+
"github.com/openmfp/kubernetes-graphql-gateway/common"
17+
"github.com/openmfp/kubernetes-graphql-gateway/gateway/resolver"
1818
)
1919

2020
type Provider interface {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/openmfp/crd-gql-gateway
1+
module github.com/openmfp/kubernetes-graphql-gateway
22

33
go 1.23.2
44

0 commit comments

Comments
 (0)