We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca169d commit 0400c45Copy full SHA for 0400c45
pkg/controller/pod.go
@@ -361,7 +361,8 @@ func (c *Controller) enqueueUpdatePod(oldObj, newObj interface{}) {
361
oldVips := oldPod.Annotations[fmt.Sprintf(util.PortVipAnnotationTemplate, podNet.ProviderName)]
362
newVips := newPod.Annotations[fmt.Sprintf(util.PortVipAnnotationTemplate, podNet.ProviderName)]
363
if oldSecurity != newSecurity || oldSg != newSg || oldVips != newVips {
364
- c.updatePodSecurityQueue.Add(key)
+ klog.Infof("enqueue add pod %s", key)
365
+ c.addPodQueue.Add(key)
366
break
367
}
368
0 commit comments