get devops components status

This commit is contained in:
runzexia
2019-04-28 14:56:34 +08:00
committed by zryfish
parent 0451f153f8
commit 5babbe8b53

View File

@@ -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}
)