Skip to content

Commit

Permalink
Merge pull request kubernetes#113937 from liggitt/drop-strict-beta
Browse files Browse the repository at this point in the history
Switch deprecated API serving back to gating on beta
  • Loading branch information
k8s-ci-robot committed Nov 16, 2022
2 parents 0fdac49 + 32ac434 commit 96fd7b1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ type ResourceExpirationEvaluator interface {

func NewResourceExpirationEvaluator(currentVersion apimachineryversion.Info) (ResourceExpirationEvaluator, error) {
ret := &resourceExpirationEvaluator{
// TODO https://github.com/kubernetes/kubernetes/issues/111972 set this back to false after beta is tagged.
strictRemovedHandlingInAlpha: true,
strictRemovedHandlingInAlpha: false,
}
if len(currentVersion.Major) > 0 {
currentMajor64, err := strconv.ParseInt(currentVersion.Major, 10, 32)
Expand Down

0 comments on commit 96fd7b1

Please sign in to comment.