exclude terminating pods (#1602)
This commit is contained in:
parent
259df3c850
commit
0daa03a81f
1 changed files with 5 additions and 0 deletions
|
@ -351,6 +351,11 @@ func (k *Kubernetes) findPods(r recordRequest, zone string) (pods []msg.Service,
|
|||
continue
|
||||
}
|
||||
|
||||
// exclude pods in the process of termination
|
||||
if !p.ObjectMeta.DeletionTimestamp.IsZero() {
|
||||
continue
|
||||
}
|
||||
|
||||
// check for matching ip and namespace
|
||||
if ip == p.Status.PodIP && match(namespace, p.Namespace) {
|
||||
s := msg.Service{Key: strings.Join([]string{zonePath, Pod, namespace, podname}, "/"), Host: ip, TTL: k.ttl}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue