mirror of
https://github.com/go-micro/go-micro.git
synced 2025-06-12 22:07:47 +02:00
get k8s pod (#2173)
This commit is contained in:
@ -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 {
|
||||
if pod.Status.Phase != podRunning || pod.Meta.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 {
|
||||
if pod.Status.Phase != podRunning || pod.Meta.DeletionTimestamp != "" {
|
||||
continue
|
||||
}
|
||||
for k, v := range pod.Metadata.Annotations {
|
||||
|
Reference in New Issue
Block a user