1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-08-10 21:52:01 +02:00

Fix labels for k8s (#1370)

This commit is contained in:
Asim Aslam
2020-03-18 22:13:21 +00:00
committed by GitHub
parent 99c3fe2bb8
commit 5ad7c36bd4

View File

@@ -136,8 +136,12 @@ func (k *kubernetes) getService(labels map[string]string) ([]*service, error) {
for _, item := range podList.Items {
var status string
// inspect the
if item.Metadata.Name != name {
// check the name
if item.Metadata.Labels["name"] != name {
continue
}
// check the version
if item.Metadata.Labels["version"] != version {
continue
}