feature: reduce telemetry dependence (#6390)

feature: reduce telemetry dependence. (#6276)

Signed-off-by: peng wu <2030047311@qq.com>
This commit is contained in:
smartcat999
2025-03-05 10:34:42 +08:00
committed by GitHub
parent ddddbbe500
commit db7a21e754
30 changed files with 1960 additions and 115 deletions

View File

@@ -5,6 +5,8 @@
package constants
import corev1 "k8s.io/api/core/v1"
const (
KubeSystemNamespace = "kube-system"
KubeSphereNamespace = "kubesphere-system"
@@ -26,6 +28,10 @@ const (
CascadingDeletionFinalizer = "kubesphere.io/cascading-deletion"
)
const (
SecretTypePlatformConfig corev1.SecretType = "config.kubesphere.io/platformconfig"
)
var (
SystemNamespaces = []string{KubeSphereNamespace, KubeSystemNamespace}
)