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.
25 lines
367 B
25 lines
367 B
3 years ago
|
package kubernetes
|
||
3 years ago
|
|
||
|
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)
|
||
|
}
|
||
|
}
|