Skip to content

Commit

Permalink
chore: remove HeadGroupSpec.Replicas from raycluster_types.go
Browse files Browse the repository at this point in the history
It has been deprecated since 0.3.0.

Changes to generated files made by running `cd ray-operator && make sync
generate manifests`.

closes ray-project#612
  • Loading branch information
davidxia committed Oct 31, 2023
1 parent aab9871 commit 979c27e
Show file tree
Hide file tree
Showing 27 changed files with 5 additions and 79 deletions.
6 changes: 0 additions & 6 deletions helm-chart/kuberay-operator/crds/ray.io_rayclusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -444,9 +444,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down Expand Up @@ -7120,9 +7117,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down
6 changes: 0 additions & 6 deletions helm-chart/kuberay-operator/crds/ray.io_rayjobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down Expand Up @@ -10232,9 +10229,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down
6 changes: 0 additions & 6 deletions helm-chart/kuberay-operator/crds/ray.io_rayservices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down Expand Up @@ -7482,9 +7479,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down
2 changes: 0 additions & 2 deletions ray-operator/apis/ray/v1/raycluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ type HeadGroupSpec struct {
HeadService *v1.Service `json:"headService,omitempty"`
// EnableIngress indicates whether operator should create ingress object for head service or not.
EnableIngress *bool `json:"enableIngress,omitempty"`
// HeadGroupSpec.Replicas is deprecated and ignored; there can only be one head pod per Ray cluster.
Replicas *int32 `json:"replicas,omitempty"`
// RayStartParams are the params of the start command: node-manager-port, object-store-memory, ...
RayStartParams map[string]string `json:"rayStartParams"`
// Template is the exact pod template used in K8s depoyments, statefulsets, etc.
Expand Down
1 change: 0 additions & 1 deletion ray-operator/apis/ray/v1/raycluster_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ var myRayCluster = &RayCluster{
},
Spec: RayClusterSpec{
HeadGroupSpec: HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-manager-port": "12345",
Expand Down
1 change: 0 additions & 1 deletion ray-operator/apis/ray/v1/rayjob_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ var expectedRayJob = RayJob{
RayClusterSpec: &RayClusterSpec{
RayVersion: "1.12.1",
HeadGroupSpec: HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-store-memory": "100000000",
Expand Down
2 changes: 0 additions & 2 deletions ray-operator/apis/ray/v1/rayservice_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ var myRayService = &RayService{
},
RayClusterSpec: RayClusterSpec{
HeadGroupSpec: HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-store-memory": "100000000",
Expand Down Expand Up @@ -236,7 +235,6 @@ var expected = `{
},
"rayClusterConfig":{
"headGroupSpec":{
"replicas":1,
"rayStartParams":{
"dashboard-agent-listen-port":"52365",
"dashboard-host":"0.0.0.0",
Expand Down
5 changes: 0 additions & 5 deletions ray-operator/apis/ray/v1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions ray-operator/apis/ray/v1alpha1/raycluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ type HeadGroupSpec struct {
HeadService *v1.Service `json:"headService,omitempty"`
// EnableIngress indicates whether operator should create ingress object for head service or not.
EnableIngress *bool `json:"enableIngress,omitempty"`
// HeadGroupSpec.Replicas is deprecated and ignored; there can only be one head pod per Ray cluster.
Replicas *int32 `json:"replicas,omitempty"`
// RayStartParams are the params of the start command: node-manager-port, object-store-memory, ...
RayStartParams map[string]string `json:"rayStartParams"`
// Template is the exact pod template used in K8s depoyments, statefulsets, etc.
Expand Down
1 change: 0 additions & 1 deletion ray-operator/apis/ray/v1alpha1/raycluster_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ var myRayCluster = &RayCluster{
},
Spec: RayClusterSpec{
HeadGroupSpec: HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-manager-port": "12345",
Expand Down
1 change: 0 additions & 1 deletion ray-operator/apis/ray/v1alpha1/rayjob_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ var expectedRayJob = RayJob{
RayClusterSpec: &RayClusterSpec{
RayVersion: "1.12.1",
HeadGroupSpec: HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-store-memory": "100000000",
Expand Down
2 changes: 0 additions & 2 deletions ray-operator/apis/ray/v1alpha1/rayservice_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ var myRayService = &RayService{
},
RayClusterSpec: RayClusterSpec{
HeadGroupSpec: HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-store-memory": "100000000",
Expand Down Expand Up @@ -236,7 +235,6 @@ var expected = `{
},
"rayClusterConfig":{
"headGroupSpec":{
"replicas":1,
"rayStartParams":{
"dashboard-agent-listen-port":"52365",
"dashboard-host":"0.0.0.0",
Expand Down
5 changes: 0 additions & 5 deletions ray-operator/apis/ray/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions ray-operator/config/crd/bases/ray.io_rayclusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -444,9 +444,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down Expand Up @@ -7120,9 +7117,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down
6 changes: 0 additions & 6 deletions ray-operator/config/crd/bases/ray.io_rayjobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down Expand Up @@ -10232,9 +10229,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down
6 changes: 0 additions & 6 deletions ray-operator/config/crd/bases/ray.io_rayservices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down Expand Up @@ -7482,9 +7479,6 @@ spec:
additionalProperties:
type: string
type: object
replicas:
format: int32
type: integer
serviceType:
type: string
template:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ func (v *VolcanoBatchScheduler) DoBatchSchedulingOnSubmission(app *rayv1.RayClus
var minMember int32
var totalResource corev1.ResourceList
if app.Spec.EnableInTreeAutoscaling == nil || !*app.Spec.EnableInTreeAutoscaling {
minMember = utils.CalculateDesiredReplicas(app) + *app.Spec.HeadGroupSpec.Replicas
minMember = utils.CalculateDesiredReplicas(app) + 1
totalResource = utils.CalculateDesiredResources(app)
} else {
minMember = utils.CalculateMinReplicas(app) + *app.Spec.HeadGroupSpec.Replicas
minMember = utils.CalculateMinReplicas(app) + 1
totalResource = utils.CalculateMinResources(app)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ func TestCreatePodGroup(t *testing.T) {
Template: corev1.PodTemplateSpec{
Spec: headSpec,
},
Replicas: pointer.Int32Ptr(1),
},
WorkerGroupSpecs: []rayv1.WorkerGroupSpec{
{
Expand All @@ -77,7 +76,7 @@ func TestCreatePodGroup(t *testing.T) {
},
}

minMember := utils.CalculateDesiredReplicas(&cluster) + *cluster.Spec.HeadGroupSpec.Replicas
minMember := utils.CalculateDesiredReplicas(&cluster) + 1
totalResource := utils.CalculateDesiredResources(&cluster)
pg := createPodGroup(&cluster, getAppPodGroupName(&cluster), minMember, totalResource)

Expand Down
3 changes: 0 additions & 3 deletions ray-operator/controllers/ray/common/ingress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (

corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/pointer"
)

var instanceWithIngressEnabled = &rayv1.RayCluster{
Expand All @@ -25,7 +24,6 @@ var instanceWithIngressEnabled = &rayv1.RayCluster{
},
Spec: rayv1.RayClusterSpec{
HeadGroupSpec: rayv1.HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
Template: corev1.PodTemplateSpec{
Spec: corev1.PodSpec{
Containers: []corev1.Container{
Expand All @@ -49,7 +47,6 @@ var instanceWithIngressEnabledWithoutIngressClass = &rayv1.RayCluster{
},
Spec: rayv1.RayClusterSpec{
HeadGroupSpec: rayv1.HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
Template: corev1.PodTemplateSpec{
Spec: corev1.PodSpec{
Containers: []corev1.Container{
Expand Down
1 change: 0 additions & 1 deletion ray-operator/controllers/ray/common/pod_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ var instance = rayv1.RayCluster{
},
Spec: rayv1.RayClusterSpec{
HeadGroupSpec: rayv1.HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-manager-port": "12345",
Expand Down
1 change: 0 additions & 1 deletion ray-operator/controllers/ray/common/route_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ var instanceWithRouteEnabled = &rayv1.RayCluster{
},
Spec: rayv1.RayClusterSpec{
HeadGroupSpec: rayv1.HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
EnableIngress: pointer.BoolPtr(true),
Template: corev1.PodTemplateSpec{
Spec: corev1.PodSpec{
Expand Down
2 changes: 0 additions & 2 deletions ray-operator/controllers/ray/common/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (

corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/pointer"
)

var (
Expand Down Expand Up @@ -44,7 +43,6 @@ var (
headServiceAnnotationKey2: headServiceAnnotationValue2,
},
HeadGroupSpec: rayv1.HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-manager-port": "12345",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ func setupTest(t *testing.T) {
Spec: rayv1.RayClusterSpec{
EnableInTreeAutoscaling: &enableInTreeAutoscaling,
HeadGroupSpec: rayv1.HeadGroupSpec{
Replicas: pointer.Int32Ptr(1),
RayStartParams: map[string]string{
"port": "6379",
"object-manager-port": "12345",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ var _ = Context("Inside the default namespace", func() {
RayVersion: "2.7.0",
HeadGroupSpec: rayv1.HeadGroupSpec{
ServiceType: corev1.ServiceTypeClusterIP,
Replicas: pointer.Int32(1),
RayStartParams: map[string]string{
"port": "6379",
"object-store-memory": "100000000",
Expand Down
1 change: 0 additions & 1 deletion ray-operator/controllers/ray/rayjob_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ var myRayJob = &rayv1.RayJob{
RayClusterSpec: &rayv1.RayClusterSpec{
RayVersion: "1.12.1",
HeadGroupSpec: rayv1.HeadGroupSpec{
Replicas: pointer.Int32(1),
RayStartParams: map[string]string{
"port": "6379",
"object-store-memory": "100000000",
Expand Down
1 change: 0 additions & 1 deletion ray-operator/controllers/ray/rayservice_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ applications:
RayClusterSpec: rayv1.RayClusterSpec{
RayVersion: "1.12.1",
HeadGroupSpec: rayv1.HeadGroupSpec{
Replicas: pointer.Int32(1),
RayStartParams: map[string]string{
"port": "6379",
"object-store-memory": "100000000",
Expand Down
8 changes: 2 additions & 6 deletions ray-operator/controllers/ray/utils/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,7 @@ func CalculateAvailableReplicas(pods corev1.PodList) int32 {
func CalculateDesiredResources(cluster *rayv1.RayCluster) corev1.ResourceList {
desiredResourcesList := []corev1.ResourceList{{}}
headPodResource := calculatePodResource(cluster.Spec.HeadGroupSpec.Template.Spec)
for i := int32(0); i < *cluster.Spec.HeadGroupSpec.Replicas; i++ {
desiredResourcesList = append(desiredResourcesList, headPodResource)
}
desiredResourcesList = append(desiredResourcesList, headPodResource)
for _, nodeGroup := range cluster.Spec.WorkerGroupSpecs {
podResource := calculatePodResource(nodeGroup.Template.Spec)
for i := int32(0); i < *nodeGroup.Replicas; i++ {
Expand All @@ -299,9 +297,7 @@ func CalculateDesiredResources(cluster *rayv1.RayCluster) corev1.ResourceList {
func CalculateMinResources(cluster *rayv1.RayCluster) corev1.ResourceList {
minResourcesList := []corev1.ResourceList{{}}
headPodResource := calculatePodResource(cluster.Spec.HeadGroupSpec.Template.Spec)
for i := int32(0); i < *cluster.Spec.HeadGroupSpec.Replicas; i++ {
minResourcesList = append(minResourcesList, headPodResource)
}
minResourcesList = append(minResourcesList, headPodResource)
for _, nodeGroup := range cluster.Spec.WorkerGroupSpecs {
podResource := calculatePodResource(nodeGroup.Template.Spec)
for i := int32(0); i < *nodeGroup.MinReplicas; i++ {
Expand Down

0 comments on commit 979c27e

Please sign in to comment.