diff --git a/pkg/constants/constants.go b/pkg/constants/constants.go index 41d713e03..ea6e11765 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} )