File tree Expand file tree Collapse file tree
helm-chart/kuberay-operator
ray-operator/pkg/features Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ spec:
176176| featureGates[ 1] .name | string | ` "RayJobDeletionPolicy" ` | |
177177| featureGates[ 1] .enabled | bool | ` true ` | |
178178| featureGates[ 2] .name | string | ` "RayMultiHostIndexing" ` | |
179- | featureGates[ 2] .enabled | bool | ` false ` | |
179+ | featureGates[ 2] .enabled | bool | ` true ` | |
180180| featureGates[ 3] .name | string | ` "RayServiceIncrementalUpgrade" ` | |
181181| featureGates[ 3] .enabled | bool | ` false ` | |
182182| featureGates[ 4] .name | string | ` "RayCronJob" ` | |
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ featureGates:
137137- name : RayJobDeletionPolicy
138138 enabled : true
139139- name : RayMultiHostIndexing
140- enabled : false
140+ enabled : true
141141- name : RayServiceIncrementalUpgrade
142142 enabled : false
143143- name : RayCronJob
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ const (
2929 // owner: @aaronliang @ryanaoleary
3030 // rep: N/A
3131 // alpha: v1.5
32+ // beta: v1.6
3233 //
3334 // Enables multi-host worker indexing
3435 RayMultiHostIndexing featuregate.Feature = "RayMultiHostIndexing"
@@ -62,7 +63,7 @@ func init() {
6263var defaultFeatureGates = map [featuregate.Feature ]featuregate.FeatureSpec {
6364 RayClusterStatusConditions : {Default : true , PreRelease : featuregate .Beta },
6465 RayJobDeletionPolicy : {Default : true , PreRelease : featuregate .Beta },
65- RayMultiHostIndexing : {Default : false , PreRelease : featuregate .Alpha },
66+ RayMultiHostIndexing : {Default : true , PreRelease : featuregate .Beta },
6667 RayServiceIncrementalUpgrade : {Default : false , PreRelease : featuregate .Alpha },
6768 RayCronJob : {Default : false , PreRelease : featuregate .Alpha },
6869 AsyncJobInfoQuery : {Default : false , PreRelease : featuregate .Alpha },
You can’t perform that action at this time.
0 commit comments