From 5babbe8b53be73e969c6d72a0be5df5232cf1269 Mon Sep 17 00:00:00 2001 From: runzexia Date: Sun, 28 Apr 2019 14:56:34 +0800 Subject: [PATCH] get devops components status --- pkg/constants/constants.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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} )