diff --git a/fleetshard/pkg/central/reconciler/zzz_managed_resources.go b/fleetshard/pkg/central/reconciler/zzz_managed_resources.go index 5630a9eb5..b420229a0 100644 --- a/fleetshard/pkg/central/reconciler/zzz_managed_resources.go +++ b/fleetshard/pkg/central/reconciler/zzz_managed_resources.go @@ -9,9 +9,6 @@ import ( // - are present in the tenant-resources helm chart // - were present in a previous version of the chart. A comment will indicate that manual removal from the list is required. var tenantChartResourceGVKs = []schema.GroupVersionKind{ - schema.GroupVersionKind{Group: "", Version: "v1", Kind: "ConfigMap"}, - schema.GroupVersionKind{Group: "", Version: "v1", Kind: "Service"}, - schema.GroupVersionKind{Group: "apps", Version: "v1", Kind: "Deployment"}, schema.GroupVersionKind{Group: "autoscaling.k8s.io", Version: "v1", Kind: "VerticalPodAutoscaler"}, schema.GroupVersionKind{Group: "networking.k8s.io", Version: "v1", Kind: "NetworkPolicy"}, } diff --git a/go.mod b/go.mod index 7b8899c3e..60da9fc92 100644 --- a/go.mod +++ b/go.mod @@ -58,7 +58,6 @@ require ( github.com/xeipuuv/gojsonschema v1.2.0 github.com/zgalor/weberr v0.8.2 golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 - golang.org/x/net v0.26.0 golang.org/x/oauth2 v0.20.0 golang.org/x/sync v0.7.0 golang.org/x/sys v0.21.0 @@ -200,6 +199,7 @@ require ( go.uber.org/zap v1.26.0 // indirect golang.org/x/crypto v0.24.0 // indirect golang.org/x/exp/typeparams v0.0.0-20230307190834-24139beb5833 // indirect + golang.org/x/net v0.26.0 // indirect golang.org/x/term v0.21.0 // indirect golang.org/x/text v0.16.0 // indirect golang.org/x/time v0.5.0 // indirect