diff --git a/docs/supervisor-notes.md b/docs/supervisor-notes.md index 54387d7b..3f3e435d 100644 --- a/docs/supervisor-notes.md +++ b/docs/supervisor-notes.md @@ -84,6 +84,15 @@ The default list of blocked resources in configmap is: nsxlocks.nsx.vmware.com nsxnetworkconfigurations.nsx.vmware.com nsxnetworkinterfaces.nsx.vmware.com + vpcnetworkconfigurations.nsx.vmware.com + networkinfos.nsx.vmware.com + subnets.nsx.vmware.com + subnetsets.nsx.vmware.com + subnetports.nsx.vmware.com + staticroutes.nsx.vmware.com + ippools.nsx.vmware.com + securitypolicies.nsx.vmware.com + nsxserviceaccounts.nsx.vmware.com orders.acme.cert-manager.io persistenceinstanceinfoes.psp.wcp.vmware.com persistenceserviceconfigurations.psp.wcp.vmware.com @@ -140,6 +149,9 @@ The following resources are handled during the restore on the Supervisor Cluster * vmware-system-image-references * vmware-system-vm-moid * vmware-system-vm-uuid + * vmware-system-network + * nsx.vmware.com/attachment + * nsx.vmware.com/mac ## vSphere Plugin resources diff --git a/pkg/constants/constants.go b/pkg/constants/constants.go index b38b1fb0..d98ad42f 100644 --- a/pkg/constants/constants.go +++ b/pkg/constants/constants.go @@ -270,7 +270,15 @@ var ResourcesToBlock = map[string]bool{ //"nsxloadbalancermonitors.vmware.com": true, // DO NOT ADD IT BACK "nsxlocks.nsx.vmware.com": true, "nsxnetworkinterfaces.nsx.vmware.com": true, + "vpcnetworkconfigurations.nsx.vmware.com": true, + "networkinfos.nsx.vmware.com": true, + "subnets.nsx.vmware.com": true, + "subnetsets.nsx.vmware.com": true, + "subnetports.nsx.vmware.com": true, + "staticroutes.nsx.vmware.com": true, + "securitypolicies.nsx.vmware.com": true, "nsxnetworkconfigurations.nsx.vmware.com": true, + "nsxserviceaccounts.nsx.vmware.com": true, "orders.acme.cert-manager.io": true, "persistenceinstanceinfoes.psp.wcp.vmware.com": true, "persistenceserviceconfigurations.psp.wcp.vmware.com": true, @@ -360,6 +368,8 @@ var PodAnnotationsToSkip = map[string]bool{ "vmware-system-vm-moid": true, "vmware-system-vm-uuid": true, "vmware-system-network": true, + "nsx.vmware.com/attachment": true, + "nsx.vmware.com/mac": true, } // UUID of the VM on Supervisor Cluster