Skip to content

Commit bc33a54

Browse files
committed
propagate through namespaces
1 parent 0834f70 commit bc33a54

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pkg/kube/ikubernetes.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package kube
22

33
import (
44
"fmt"
5+
"github.com/mattfenwick/cyclonus/pkg/utils"
56
"github.com/pkg/errors"
67
v1 "k8s.io/api/core/v1"
78
networkingv1 "k8s.io/api/networking/v1"
@@ -112,7 +113,6 @@ func (m *MockKubernetes) getNamespaceObject(namespace string) (*MockNamespace, e
112113

113114
func (m *MockKubernetes) GetNamespace(namespace string) (*v1.Namespace, error) {
114115
if ns, ok := m.Namespaces[namespace]; ok {
115-
//return ns.NamespaceObject, nil
116116
labels := map[string]string{}
117117
for k, v := range ns.NamespaceObject.Labels {
118118
labels[k] = v
@@ -147,8 +147,10 @@ func (m *MockKubernetes) DeleteNamespace(ns string) error {
147147

148148
func (m *MockKubernetes) GetAllNamespaces() (*v1.NamespaceList, error) {
149149
var namespaces []v1.Namespace
150-
for _, ns := range m.Namespaces {
151-
namespaces = append(namespaces, *ns.NamespaceObject)
150+
for name := range m.Namespaces {
151+
ns, err := m.GetNamespace(name)
152+
utils.DoOrDie(err)
153+
namespaces = append(namespaces, *ns)
152154
}
153155
return &v1.NamespaceList{
154156
Items: namespaces,

0 commit comments

Comments
 (0)