Switch deprecated API serving back to gating on beta

This commit is contained in:
Jordan Liggitt 2022-11-15 22:02:49 -05:00
parent 0fdac49162
commit 32ac434d4d
No known key found for this signature in database

View File

@ -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)