@@ -2,6 +2,7 @@ package kube
2
2
3
3
import (
4
4
"fmt"
5
+ "github.com/mattfenwick/cyclonus/pkg/utils"
5
6
"github.com/pkg/errors"
6
7
v1 "k8s.io/api/core/v1"
7
8
networkingv1 "k8s.io/api/networking/v1"
@@ -112,7 +113,6 @@ func (m *MockKubernetes) getNamespaceObject(namespace string) (*MockNamespace, e
112
113
113
114
func (m * MockKubernetes ) GetNamespace (namespace string ) (* v1.Namespace , error ) {
114
115
if ns , ok := m .Namespaces [namespace ]; ok {
115
- //return ns.NamespaceObject, nil
116
116
labels := map [string ]string {}
117
117
for k , v := range ns .NamespaceObject .Labels {
118
118
labels [k ] = v
@@ -147,8 +147,10 @@ func (m *MockKubernetes) DeleteNamespace(ns string) error {
147
147
148
148
func (m * MockKubernetes ) GetAllNamespaces () (* v1.NamespaceList , error ) {
149
149
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 )
152
154
}
153
155
return & v1.NamespaceList {
154
156
Items : namespaces ,
0 commit comments