Mark the server-side dry-run feature as GA

Kubernetes-commit: df0ee9f88b7d308b6668ece02711ca01b1698af1
This commit is contained in:
Julian V. Modesto 2020-05-05 16:20:29 -04:00 committed by Kubernetes Publisher
parent 5f80bf2faa
commit a470b96352
1 changed files with 2 additions and 1 deletions

View File

@ -83,6 +83,7 @@ const (
// owner: @apelisse
// alpha: v1.12
// beta: v1.13
// stable: v1.18
//
// Allow requests to be processed but not stored, so that
// validation, merging, mutation can be tested without
@ -165,7 +166,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
DynamicAuditing: {Default: false, PreRelease: featuregate.Alpha},
APIResponseCompression: {Default: true, PreRelease: featuregate.Beta},
APIListChunking: {Default: true, PreRelease: featuregate.Beta},
DryRun: {Default: true, PreRelease: featuregate.Beta},
DryRun: {Default: true, PreRelease: featuregate.GA},
RemainingItemCount: {Default: true, PreRelease: featuregate.Beta},
ServerSideApply: {Default: true, PreRelease: featuregate.Beta},
StorageVersionHash: {Default: true, PreRelease: featuregate.Beta},