We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c937a26 commit 2270ed6Copy full SHA for 2270ed6
apiserver/dfservice/dfimpl.go
@@ -28,6 +28,7 @@ import (
28
"k8s.io/api/core/v1"
29
"k8s.io/apimachinery/pkg/api/resource"
30
"k8s.io/client-go/kubernetes"
31
+ "strings"
32
)
33
34
func DfCluster(name, selector string) msgs.DfResponse {
@@ -72,6 +73,10 @@ func DfCluster(name, selector string) msgs.DfResponse {
72
73
//for each service get the database size and append to results
74
75
for svcName, svcIP := range services {
76
+ if strings.Contains(svcName, "-pgbouncer") ||
77
+ strings.Contains(svcName, "-pgpool") {
78
+ continue
79
+ }
80
result := msgs.DfDetail{}
81
//result.Name = c.Name
82
result.Name = svcName
0 commit comments