Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetStatusPort (0.14 sec)

  1. pkg/kube/inject/webhook.go

    			// If sidecar.istio.io/status is not present then append instead of merge.
    			_, previouslyInjected := pod.Annotations[annotation.SidecarStatus.Name]
    			sidecar.Env = mergeOrAppendProbers(previouslyInjected, sidecar.Env, prober)
    		}
    		patchRewriteProbe(pod.Annotations, pod, req.meshConfig.GetDefaultConfig().GetStatusPort())
    	}
    	return nil
    }
    
    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

    	}
    	for _, c := range prevStatus.InitContainers {
    		pod.Spec.InitContainers = modifyContainers(pod.Spec.InitContainers, c, Remove)
    	}
    
    	targetPort := strconv.Itoa(int(req.meshConfig.GetDefaultConfig().GetStatusPort()))
    	if cur, f := getPrometheusPort(pod); f {
    		// We have already set the port, assume user is controlling this or, more likely, re-injected
    		// the pod.
    		if cur == targetPort {
    			clearPrometheusAnnotations(pod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	}
    	return 0
    }
    
    func (x *ProxyConfig) GetStartupProbe() *StartupProbe {
    	if x != nil {
    		return x.StartupProbe
    	}
    	return nil
    }
    
    func (x *ProxyConfig) GetStatusPort() uint32 {
    	if x != nil {
    		return x.StatusPort
    	}
    	return 0
    }
    
    // Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top