From 6ac7d4127a81230b05647bc14a5e7d64bf948721 Mon Sep 17 00:00:00 2001 From: Ravi Gudimetla Date: Sat, 16 Jul 2022 15:04:49 -0400 Subject: [PATCH] api: Promote DS maxSurge to GA --- pkg/apis/apps/types.go | 1 - staging/src/k8s.io/api/apps/v1/types.go | 1 - staging/src/k8s.io/api/apps/v1beta2/types.go | 1 - 3 files changed, 3 deletions(-) diff --git a/pkg/apis/apps/types.go b/pkg/apis/apps/types.go index d29904272b0..5b99047cd49 100644 --- a/pkg/apis/apps/types.go +++ b/pkg/apis/apps/types.go @@ -625,7 +625,6 @@ type RollingUpdateDaemonSet struct { // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may // cause evictions during disruption. - // This is beta field and enabled/disabled by DaemonSetUpdateSurge feature gate. // +optional MaxSurge intstr.IntOrString } diff --git a/staging/src/k8s.io/api/apps/v1/types.go b/staging/src/k8s.io/api/apps/v1/types.go index 34e10bf9632..c6c87c93c6e 100644 --- a/staging/src/k8s.io/api/apps/v1/types.go +++ b/staging/src/k8s.io/api/apps/v1/types.go @@ -596,7 +596,6 @@ type RollingUpdateDaemonSet struct { // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may // cause evictions during disruption. - // This is beta field and enabled/disabled by DaemonSetUpdateSurge feature gate. // +optional MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"` } diff --git a/staging/src/k8s.io/api/apps/v1beta2/types.go b/staging/src/k8s.io/api/apps/v1beta2/types.go index aeb707407c6..10f437d6a96 100644 --- a/staging/src/k8s.io/api/apps/v1beta2/types.go +++ b/staging/src/k8s.io/api/apps/v1beta2/types.go @@ -648,7 +648,6 @@ type RollingUpdateDaemonSet struct { // daemonset on any given node can double if the readiness check fails, and // so resource intensive daemonsets should take into account that they may // cause evictions during disruption. - // This is beta field and enabled/disabled by DaemonSetUpdateSurge feature gate. // +optional MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"` }