We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0400c45 commit 2bd75f0Copy full SHA for 2bd75f0
pkg/controller/pod.go
@@ -361,8 +361,7 @@ 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
- klog.Infof("enqueue add pod %s", key)
365
- c.addPodQueue.Add(key)
+ c.updatePodSecurityQueue.Add(key)
366
break
367
}
368
0 commit comments