You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
kratos/config/kubernetes/config_test.go

24 lines
367 B

package kubernetes
import (
"path/filepath"
"testing"
"k8s.io/client-go/util/homedir"
)
func TestSource(t *testing.T) {
home := homedir.HomeDir()
s := NewSource(
Namespace("mesh"),
LabelSelector(""),
KubeConfig(filepath.Join(home, ".kube", "config")),
)
kvs, err := s.Load()
if err != nil {
t.Error(err)
}
for _, v := range kvs {
t.Log(v)
}
}