Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -178,7 +178,7 @@ spec:
| featureGates[2].name | string | `"RayMultiHostIndexing"` | |
| featureGates[2].enabled | bool | `true` | |
| featureGates[3].name | string | `"RayServiceIncrementalUpgrade"` | |
| featureGates[3].enabled | bool | `true` | |
| featureGates[3].enabled | bool | `false` | |
| featureGates[4].name | string | `"RayCronJob"` | |
| featureGates[4].enabled | bool | `false` | |
| metrics.enabled | bool | `true` | Whether KubeRay operator should emit control plane metrics. |
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 @@ -139,7 +139,7 @@ featureGates:
- name: RayMultiHostIndexing
enabled: true
- name: RayServiceIncrementalUpgrade
enabled: true
enabled: false
- name: RayCronJob
enabled: false

Expand Down
2 changes: 1 addition & 1 deletion ray-operator/pkg/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,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: true, PreRelease: featuregate.Beta},
RayServiceIncrementalUpgrade: {Default: false, PreRelease: featuregate.Alpha},
RayCronJob: {Default: false, PreRelease: featuregate.Alpha},
AsyncJobInfoQuery: {Default: false, PreRelease: featuregate.Alpha},
}
Expand Down
Loading