Skip to content

Commit 77fcd53

Browse files
committed
try adding default labels in mock kube
1 parent 254fc7d commit 77fcd53

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

pkg/kube/ikubernetes.go

+13-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"github.com/pkg/errors"
66
v1 "k8s.io/api/core/v1"
77
networkingv1 "k8s.io/api/networking/v1"
8+
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
89
"math/rand"
910
)
1011

@@ -110,7 +111,18 @@ func (m *MockKubernetes) getNamespaceObject(namespace string) (*MockNamespace, e
110111

111112
func (m *MockKubernetes) GetNamespace(namespace string) (*v1.Namespace, error) {
112113
if ns, ok := m.Namespaces[namespace]; ok {
113-
return ns.NamespaceObject, nil
114+
//return ns.NamespaceObject, nil
115+
labels := map[string]string{}
116+
for k, v := range ns.NamespaceObject.Labels {
117+
labels[k] = v
118+
}
119+
labels["kubernetes.io/metadata.name"] = namespace
120+
return &v1.Namespace{
121+
ObjectMeta: metav1.ObjectMeta{
122+
Name: ns.NamespaceObject.Name,
123+
Labels:labels,
124+
},
125+
}, nil
114126
}
115127
return nil, errors.Errorf("namespace %s not found", namespace)
116128
}

0 commit comments

Comments
 (0)