1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-29 20:39:48 +02:00
* get k8s pod

* fix: filed

* field
This commit is contained in:
biubiubiu-ljd 2021-06-03 14:01:26 +08:00 committed by GitHub
parent 86d8d8f07e
commit ed44e9acc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions
plugins/registry/kubernetes

@ -191,7 +191,7 @@ func (c *kregistry) GetService(name string, opts ...registry.GetOption) ([]*regi
// loop through items
for _, pod := range pods.Items {
if pod.Status.Phase != podRunning || pod.Meta.DeletionTimestamp != "" {
if pod.Status.Phase != podRunning || pod.Metadata.DeletionTimestamp != "" {
continue
}
// get serialised service from annotation
@ -235,7 +235,7 @@ func (c *kregistry) ListServices(opts ...registry.ListOption) ([]*registry.Servi
svcs := make(map[string]bool)
for _, pod := range pods.Items {
if pod.Status.Phase != podRunning || pod.Meta.DeletionTimestamp != "" {
if pod.Status.Phase != podRunning || pod.Metadata.DeletionTimestamp != "" {
continue
}
for k, v := range pod.Metadata.Annotations {

@ -155,7 +155,7 @@ func (k *k8sWatcher) handleEvent(event watch.Event) {
for _, result := range results {
// pod isnt running
if pod.Status.Phase != podRunning || pod.Meta.DeletionTimestamp != "" {
if pod.Status.Phase != podRunning || pod.Metadata.DeletionTimestamp != "" {
result.Action = "delete"
}
k.next <- result