Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for findContainer (0.11 sec)

  1. pkg/kube/inject/webhook.go

    		// env variables like ISTIO_META_APP_CONTAINERS and ISTIO_META_POD_PORTS.
    		if match := FindContainer(c.Name, parsedInjectedStatus.Containers); match != nil {
    			continue
    		}
    		match := FindContainer(c.Name, existingOverrides.Containers)
    		if match == nil {
    			match = FindContainer(c.Name, originalPod.Spec.Containers)
    		}
    		if match == nil {
    			continue
    		}
    		overlay := *match.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject.go

    		// move the container.
    		if features.EnableNativeSidecars.Get() &&
    			FindContainer(ProxyContainerName, templatePod.Spec.InitContainers) != nil &&
    			FindContainer(ProxyContainerName, mergedPod.Spec.Containers) != nil {
    			mergedPod = mergedPod.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
Back to top