Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for potentialPodName (0.13 sec)

  1. pkg/kube/inject/inject.go

    				log.Debugf("Explicitly disabling injection for pod %s/%s due to pod labels matching NeverInjectSelector config map entry.",
    					metadata.Namespace, potentialPodName(metadata))
    				inject = false
    				useDefault = false
    				break
    			}
    		}
    	}
    
    	// If there's no annotation nor a NeverInjectSelector, check the AlwaysInject one
    	if useDefault {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. pkg/kube/inject/webhook.go

    	metadata := params.pod.ObjectMeta
    	// If DNSPolicy is not ClusterFirst, the Envoy sidecar may not able to connect to Istio Pilot.
    	if spec.DNSPolicy != "" && spec.DNSPolicy != corev1.DNSClusterFirst {
    		podName := potentialPodName(metadata)
    		log.Warnf("%q's DNSPolicy is not %q. The Envoy sidecar may not able to connect to Istio Pilot",
    			metadata.Namespace+"/"+podName, corev1.DNSClusterFirst)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top