We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4075e9 + 13a8363 commit f3bc379Copy full SHA for f3bc379
mgmtfn/k8splugin/kubeClient.go
@@ -27,6 +27,7 @@ import (
27
"golang.org/x/net/context/ctxhttp"
28
"io/ioutil"
29
"net/http"
30
+ "sync"
31
)
32
33
const (
@@ -72,9 +73,10 @@ type watchSvcEpStatus struct {
72
73
}
74
75
type podInfo struct {
- nameSpace string
76
- name string
77
- labels map[string]string
+ nameSpace string
+ name string
78
+ labels map[string]string
79
+ labelsMutex sync.Mutex
80
81
82
// NewAPIClient creates an instance of the k8s api client
@@ -165,6 +167,8 @@ func (c *APIClient) fetchPodLabels(ns, name string) error {
165
167
166
168
169
p := &c.podCache
170
+ p.labelsMutex.Lock()
171
+ defer p.labelsMutex.Unlock()
172
p.setDefaults(ns, name)
173
174
meta := m.(map[string]interface{})
0 commit comments