diff --git a/pkg/constants/constants.go b/pkg/constants/constants.go index 41d713e035d1b93696a9433396750c308e7d3e62..ea6e1176573d90b79d7218407160face7bcfa396 100644 --- a/pkg/constants/constants.go +++ b/pkg/constants/constants.go @@ -22,6 +22,7 @@ const ( KubeSystemNamespace = "kube-system" OpenPitrixNamespace = "openpitrix-system" + KubesphereDevOpsNamespace = "kubesphere-devops-system" IstioNamespace = "istio-system" KubeSphereMonitoringNamespace = "kubesphere-monitoring-system" KubeSphereLoggingNamespace = "kubesphere-logging-system" @@ -49,5 +50,5 @@ const ( var ( WorkSpaceRoles = []string{WorkspaceAdmin, WorkspaceRegular, WorkspaceViewer} - SystemNamespaces = []string{KubeSphereNamespace, KubeSphereLoggingNamespace, KubeSphereMonitoringNamespace, OpenPitrixNamespace, KubeSystemNamespace, IstioNamespace} + SystemNamespaces = []string{KubeSphereNamespace, KubeSphereLoggingNamespace, KubeSphereMonitoringNamespace, OpenPitrixNamespace, KubeSystemNamespace, IstioNamespace, KubesphereDevOpsNamespace} )