add some constants, fixed prometheusURL hard code
Signed-off-by: f10atin9 <f10atin9@kubesphere.io>
This commit is contained in:
@@ -20,6 +20,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"kubesphere.io/kubesphere/pkg/constants"
|
||||||
|
|
||||||
"github.com/kubesphere/pvc-autoresizer/runners"
|
"github.com/kubesphere/pvc-autoresizer/runners"
|
||||||
"k8s.io/apimachinery/pkg/labels"
|
"k8s.io/apimachinery/pkg/labels"
|
||||||
"k8s.io/apimachinery/pkg/util/sets"
|
"k8s.io/apimachinery/pkg/util/sets"
|
||||||
@@ -358,7 +360,8 @@ func addAllControllers(mgr manager.Manager, client k8s.Client, informerFactory i
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
promClient, err := runners.NewPrometheusClient("http://prometheus-k8s.kubesphere-monitoring-system:9090")
|
prometheusUrl := "http://" + constants.PrometheusSvcName + "." + constants.KubeSphereMonitoringNamespace + ":" + constants.PrometheusSvcPort
|
||||||
|
promClient, err := runners.NewPrometheusClient(prometheusUrl)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,6 +49,9 @@ const (
|
|||||||
|
|
||||||
UserNameHeader = "X-Token-Username"
|
UserNameHeader = "X-Token-Username"
|
||||||
|
|
||||||
|
PrometheusSvcName = "prometheus-k8s"
|
||||||
|
PrometheusSvcPort = "9090"
|
||||||
|
|
||||||
AuthenticationTag = "Authentication"
|
AuthenticationTag = "Authentication"
|
||||||
UserTag = "User"
|
UserTag = "User"
|
||||||
GroupTag = "Group"
|
GroupTag = "Group"
|
||||||
|
|||||||
Reference in New Issue
Block a user