Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm-chart/kuberay-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ spec:
| featureGates[2].name | string | `"RayMultiHostIndexing"` | |
| featureGates[2].enabled | bool | `true` | |
| featureGates[3].name | string | `"RayServiceIncrementalUpgrade"` | |
| featureGates[3].enabled | bool | `false` | |
| featureGates[3].enabled | bool | `true` | |
| featureGates[4].name | string | `"RayCronJob"` | |
| featureGates[4].enabled | bool | `false` | |
| featureGates[5].name | string | `"RayClusterMTLS"` | |
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/kuberay-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ featureGates:
- name: RayMultiHostIndexing
enabled: true
- name: RayServiceIncrementalUpgrade
enabled: false
enabled: true
- name: RayCronJob
enabled: false
- name: RayClusterMTLS
Expand Down
3 changes: 2 additions & 1 deletion ray-operator/pkg/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ const (
// owner: @ryanaoleary
// rep: https://github.com/ray-project/enhancements/pull/58
// alpha: v1.5
// beta: v1.7
//
// Enabled NewClusterWithIncrementalUpgrade type for RayService zero-downtime upgrades.
RayServiceIncrementalUpgrade featuregate.Feature = "RayServiceIncrementalUpgrade"
Expand Down Expand Up @@ -95,7 +96,7 @@ var defaultFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
RayClusterStatusConditions: {Default: true, PreRelease: featuregate.Beta},
RayJobDeletionPolicy: {Default: true, PreRelease: featuregate.Beta},
RayMultiHostIndexing: {Default: true, PreRelease: featuregate.Beta},
RayServiceIncrementalUpgrade: {Default: false, PreRelease: featuregate.Alpha},
RayServiceIncrementalUpgrade: {Default: true, PreRelease: featuregate.Beta},
Comment thread
cursor[bot] marked this conversation as resolved.
RayCronJob: {Default: false, PreRelease: featuregate.Alpha},
SidecarSubmitterRestart: {Default: false, PreRelease: featuregate.Alpha},
RayClusterNetworkPolicy: {Default: false, PreRelease: featuregate.Alpha},
Expand Down
Loading