You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we're currently doing an upgrade from AKS 1.25 to 1.27. During the upgrade, the service scans for usage of deprecated APIs, that will be removed in the current upgrade path.
We came across the error of autoscaling/v2beta2 used from vmoperator which is deprecated since 1.23 and was removed in 1.26.
You already made the operator compatible with #583
However I see a problem in the order of the API usage.
1,25 supports API version supports v2beta2, therefore function IsHPAV2BetaSupported returns true
and
Hello VM team,
we're currently doing an upgrade from AKS 1.25 to 1.27. During the upgrade, the service scans for usage of deprecated APIs, that will be removed in the current upgrade path.
We came across the error of autoscaling/v2beta2 used from vmoperator which is deprecated since 1.23 and was removed in 1.26.
You already made the operator compatible with #583
However I see a problem in the order of the API usage.
1,25 supports API version supports v2beta2, therefore function IsHPAV2BetaSupported returns true
and
operator/controllers/factory/builders.go
Line 405 in bfc521d
takes the beta in favor of the stable version. In 1.26 the beta api was removed. This blocks the upgrade path.
Do you any need to support the beta api? Otherwise I suggest to remove it from the controllers factory builders,
Best
/Sascha
The text was updated successfully, but these errors were encountered: