File tree Expand file tree Collapse file tree 19 files changed +36
-36
lines changed Expand file tree Collapse file tree 19 files changed +36
-36
lines changed Original file line number Diff line number Diff line change 18
18
with :
19
19
useTask : true
20
20
useLocalCoverageConfig : true
21
- imageTagName : ghcr.io/openmfp/crd-gql -gateway
21
+ imageTagName : ghcr.io/openmfp/kubernetes-graphql -gateway
22
22
coverageThreasholdFile : 0
23
23
coverageThresholdPackage : 0
24
24
coverageThreasholdTotal : 49
Original file line number Diff line number Diff line change 35
35
- go build ./...
36
36
docker :
37
37
cmds :
38
- - docker build -t ghcr.io/openmfp/crd-gql -gateway .
38
+ - docker build -t ghcr.io/openmfp/kubernetes-graphql -gateway .
39
39
# # Testing
40
40
fmt :
41
41
cmds :
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ import (
14
14
15
15
"github.com/openmfp/golang-commons/logger"
16
16
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"
19
19
)
20
20
21
21
var gatewayCmd = & cobra.Command {
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
22
22
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
23
23
"sigs.k8s.io/controller-runtime/pkg/webhook"
24
24
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"
27
27
// +kubebuilder:scaffold:imports
28
28
)
29
29
Original file line number Diff line number Diff line change 8
8
"github.com/graphql-go/handler"
9
9
"github.com/spf13/cobra"
10
10
11
- "github.com/openmfp/crd-gql -gateway/deprecated"
11
+ "github.com/openmfp/kubernetes-graphql -gateway/deprecated"
12
12
"k8s.io/apimachinery/pkg/runtime"
13
13
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
14
14
controllerruntime "sigs.k8s.io/controller-runtime"
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ import (
16
16
"github.com/graphql-go/graphql"
17
17
"github.com/graphql-go/handler"
18
18
"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"
22
19
"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"
23
23
"k8s.io/client-go/rest"
24
24
"sigs.k8s.io/controller-runtime/pkg/client"
25
25
"sigs.k8s.io/controller-runtime/pkg/kcp"
Original file line number Diff line number Diff line change 6
6
"testing"
7
7
8
8
"github.com/graphql-go/graphql"
9
- "github.com/openmfp/crd-gql-gateway/gateway/resolver/mocks"
10
9
"github.com/openmfp/golang-commons/logger"
10
+ "github.com/openmfp/kubernetes-graphql-gateway/gateway/resolver/mocks"
11
11
"github.com/stretchr/testify/assert"
12
12
"github.com/stretchr/testify/mock"
13
13
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package schema
2
2
3
3
import (
4
4
"github.com/graphql-go/graphql"
5
- "github.com/openmfp/crd-gql -gateway/gateway/resolver"
5
+ "github.com/openmfp/kubernetes-graphql -gateway/gateway/resolver"
6
6
)
7
7
8
8
const (
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ import (
12
12
"github.com/graphql-go/graphql"
13
13
"k8s.io/apimachinery/pkg/runtime/schema"
14
14
15
- "github.com/openmfp/crd-gql-gateway/common"
16
- "github.com/openmfp/crd-gql-gateway/gateway/resolver"
17
15
"github.com/openmfp/golang-commons/logger"
16
+ "github.com/openmfp/kubernetes-graphql-gateway/common"
17
+ "github.com/openmfp/kubernetes-graphql-gateway/gateway/resolver"
18
18
)
19
19
20
20
type Provider interface {
Original file line number Diff line number Diff line change 1
- module github.com/openmfp/crd-gql -gateway
1
+ module github.com/openmfp/kubernetes-graphql -gateway
2
2
3
3
go 1.23.2
4
4
You can’t perform that action at this time.
0 commit comments