Skip to content

Commit

Permalink
Rename service module to apiserver (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffwan authored Jan 15, 2022
1 parent d332607 commit 88f28ee
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions service/cmd/main.go → apiserver/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import (

"github.com/prometheus/client_golang/prometheus/promhttp"
api "github.com/ray-project/kuberay/proto/go_client"
"github.com/ray-project/kuberay/service/pkg/interceptor"
"github.com/ray-project/kuberay/service/pkg/manager"
"github.com/ray-project/kuberay/service/pkg/server"
"github.com/ray-project/kuberay/apiserver/pkg/interceptor"
"github.com/ray-project/kuberay/apiserver/pkg/manager"
"github.com/ray-project/kuberay/apiserver/pkg/server"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion service/go.mod → apiserver/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ray-project/kuberay/service
module github.com/ray-project/kuberay/apiserver

go 1.17

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"time"

"github.com/pkg/errors"
"github.com/ray-project/kuberay/service/pkg/util"
"github.com/ray-project/kuberay/apiserver/pkg/util"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/homedir"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/cenkalti/backoff"
"github.com/pkg/errors"
"github.com/ray-project/kuberay/service/pkg/util"
"github.com/ray-project/kuberay/apiserver/pkg/util"
"k8s.io/client-go/kubernetes"
v1 "k8s.io/client-go/kubernetes/typed/core/v1"
"k8s.io/client-go/tools/clientcmd"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package manager
import (
"time"

"github.com/ray-project/kuberay/service/pkg/client"
"github.com/ray-project/kuberay/service/pkg/util"
"github.com/ray-project/kuberay/apiserver/pkg/client"
"github.com/ray-project/kuberay/apiserver/pkg/util"
"k8s.io/klog/v2"
)

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"github.com/golang/protobuf/ptypes/empty"
api "github.com/ray-project/kuberay/proto/go_client"
"github.com/ray-project/kuberay/service/pkg/manager"
"github.com/ray-project/kuberay/service/pkg/util"
"github.com/ray-project/kuberay/apiserver/pkg/manager"
"github.com/ray-project/kuberay/apiserver/pkg/util"
)

type ClusterServerOptions struct {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 88f28ee

Please sign in to comment.