Skip to content

Commit ec3aee4

Browse files
authored
Merge pull request #119 from mattfenwick/labels-diff-hacking
handle default namespace labels in kube 1.21
2 parents 254fc7d + bc33a54 commit ec3aee4

File tree

4 files changed

+54
-9
lines changed

4 files changed

+54
-9
lines changed

pkg/connectivity/probe/pod.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -63,25 +63,25 @@ func (p *Pod) Host(probeMode generator.ProbeMode) string {
6363
}
6464
}
6565

66-
func (p *Pod) IsEqualToKubePod(kubePod v1.Pod) bool {
66+
func (p *Pod) IsEqualToKubePod(kubePod v1.Pod) (string, bool) {
6767
kubeConts := kubePod.Spec.Containers
6868
if len(kubeConts) != len(p.Containers) {
69-
return false
69+
return fmt.Sprintf("have %d containers, expected %d", len(p.Containers), len(kubeConts)), false
7070
}
7171
for i, kubeCont := range kubeConts {
7272
cont := p.Containers[i]
7373
if len(kubeCont.Ports) != 1 {
74-
return false
74+
return fmt.Sprintf("container %d: expected 1 port, found %d", i, len(kubeCont.Ports)), false
7575
}
7676
if int(kubeCont.Ports[0].ContainerPort) != cont.Port {
77-
return false
77+
return fmt.Sprintf("container %d: expected port %d, found %d", i, cont.Port, kubeCont.Ports[0].ContainerPort), false
7878
}
7979
if kubeCont.Ports[0].Protocol != cont.Protocol {
80-
return false
80+
return fmt.Sprintf("container %d: expected protocol %s, found %s", i, cont.Protocol, kubeCont.Ports[0].Protocol), false
8181
}
8282
}
8383

84-
return true
84+
return "", true
8585
}
8686

8787
func (p *Pod) ServiceName() string {

pkg/connectivity/probe/resources.go

+20
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ func NewDefaultResources(kubernetes kube.IKubernetes, namespaces []string, podNa
3939
if err := r.getPodIPsFromKube(kubernetes); err != nil {
4040
return nil, err
4141
}
42+
if err := r.getNamespaceLabelsFromKube(kubernetes); err != nil {
43+
return nil, err
44+
}
4245

4346
return r, nil
4447
}
@@ -95,6 +98,23 @@ func (r *Resources) getPodIPsFromKube(kubernetes kube.IKubernetes) error {
9598
return nil
9699
}
97100

101+
func (r *Resources) getNamespaceLabelsFromKube(kubernetes kube.IKubernetes) error {
102+
nsList, err := kubernetes.GetAllNamespaces()
103+
if err != nil {
104+
return err
105+
}
106+
107+
for _, kubeNs := range nsList.Items {
108+
for label, value := range kubeNs.Labels {
109+
if ns, ok := r.Namespaces[kubeNs.Name]; ok {
110+
ns[label] = value
111+
}
112+
}
113+
}
114+
115+
return nil
116+
}
117+
98118
func (r *Resources) GetPod(ns string, name string) (*Pod, error) {
99119
for _, pod := range r.Pods {
100120
if pod.Namespace == ns && pod.Name == name {

pkg/connectivity/testcasestate.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ func (t *TestCaseState) verifyClusterStateHelper() error {
200200
if actualPod.Status.PodIP != expectedPod.IP {
201201
return errors.Errorf("for pod %s, expected ip %s (found %s)", expectedPod.PodString().String(), expectedPod.IP, actualPod.Status.PodIP)
202202
}
203-
if !expectedPod.IsEqualToKubePod(actualPod) {
204-
return errors.Errorf("for pod %s, expected containers %+v (found %+v)", expectedPod.PodString().String(), expectedPod.Containers, actualPod.Spec.Containers)
203+
if diff, ok := expectedPod.IsEqualToKubePod(actualPod); !ok {
204+
return errors.Errorf("for pod %s, %s", expectedPod.PodString().String(), diff)
205205
}
206206
} else {
207207
return errors.Errorf("missing expected pod %s", expectedPod.PodString().String())

pkg/kube/ikubernetes.go

+26-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ 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"
9+
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
810
"math/rand"
911
)
1012

@@ -13,6 +15,7 @@ type IKubernetes interface {
1315
GetNamespace(namespace string) (*v1.Namespace, error)
1416
SetNamespaceLabels(namespace string, labels map[string]string) (*v1.Namespace, error)
1517
DeleteNamespace(namespace string) error
18+
GetAllNamespaces() (*v1.NamespaceList, error)
1619

1720
CreateNetworkPolicy(kubePolicy *networkingv1.NetworkPolicy) (*networkingv1.NetworkPolicy, error)
1821
GetNetworkPoliciesInNamespace(namespace string) ([]networkingv1.NetworkPolicy, error)
@@ -110,7 +113,17 @@ func (m *MockKubernetes) getNamespaceObject(namespace string) (*MockNamespace, e
110113

111114
func (m *MockKubernetes) GetNamespace(namespace string) (*v1.Namespace, error) {
112115
if ns, ok := m.Namespaces[namespace]; ok {
113-
return ns.NamespaceObject, nil
116+
labels := map[string]string{}
117+
for k, v := range ns.NamespaceObject.Labels {
118+
labels[k] = v
119+
}
120+
labels["kubernetes.io/metadata.name"] = namespace
121+
return &v1.Namespace{
122+
ObjectMeta: metav1.ObjectMeta{
123+
Name: ns.NamespaceObject.Name,
124+
Labels: labels,
125+
},
126+
}, nil
114127
}
115128
return nil, errors.Errorf("namespace %s not found", namespace)
116129
}
@@ -132,6 +145,18 @@ func (m *MockKubernetes) DeleteNamespace(ns string) error {
132145
return nil
133146
}
134147

148+
func (m *MockKubernetes) GetAllNamespaces() (*v1.NamespaceList, error) {
149+
var namespaces []v1.Namespace
150+
for name := range m.Namespaces {
151+
ns, err := m.GetNamespace(name)
152+
utils.DoOrDie(err)
153+
namespaces = append(namespaces, *ns)
154+
}
155+
return &v1.NamespaceList{
156+
Items: namespaces,
157+
}, nil
158+
}
159+
135160
func (m *MockKubernetes) CreateNamespace(ns *v1.Namespace) (*v1.Namespace, error) {
136161
if _, ok := m.Namespaces[ns.Name]; ok {
137162
return nil, errors.Errorf("namespace %s already present", ns.Name)

0 commit comments

Comments
 (0)