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
// For public clouds, check using network UUID in AWS, normal network API for GCP, skip altogether for Azure.
1002
1002
// If reference key is network uuid , then check using UUID.
1003
-
//
1004
-
// During the portal-webapp migration from Python to Go, network views were not correctly ported. However, network APIs are now being routed through Go code,
1005
-
// which is incorrect. The Avi Controller needs to be fixed.
1006
-
// For now, disabling the subnet UUID validation for AWS to avoid impact on EKS deployments.
1007
-
iflib.GetCloudType() !=lib.CLOUD_AWS {
1008
-
if (lib.IsPublicCloud() &&refModelMap[refKey] =="network") ||refKey=="NetworkUUID" {
1009
-
iflib.UsesNetworkRef() ||refKey=="NetworkUUID" {
1010
-
varrest_responseinterface{}
1011
-
utils.AviLog.Infof("Cloud is %s, checking network ref using uuid", lib.GetCloudType())
// During the portal-webapp migration from Python to Go, network views were not correctly ported. However, network APIs are now being routed through Go code,
396
+
// which is incorrect. The Avi Controller needs to be fixed.
397
+
// For now, disabling the subnet UUID validation for AWS to avoid impact on EKS deployments.
398
+
iflib.GetCloudType() ==lib.CLOUD_AWS {
399
+
utils.AviLog.Infof("Cloud Type is AWS, skip validating references on controller")
0 commit comments