Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsZTunnel (0.26 sec)

  1. istioctl/pkg/util/ambient/util.go

    	isZtunnel := strings.HasPrefix(podName, "ztunnel")
    	if client == nil {
    		return isZtunnel
    	}
    	pod, err := client.Kube().CoreV1().Pods(podNamespace).Get(context.Background(), podName, metav1.GetOptions{})
    	if err != nil {
    		return isZtunnel
    	}
    	if v, ok := pod.Labels["app"]; ok {
    		return v == "ztunnel"
    	}
    	return isZtunnel
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/statusgen.go

    		if isProxy(con) || isZtunnel(con) {
    			xdsConfigs := make([]*status.ClientConfig_GenericXdsConfig, 0)
    			for _, stype := range stypes {
    				pxc := &status.ClientConfig_GenericXdsConfig{}
    				if watchedResource, ok := con.proxy.WatchedResources[stype]; ok {
    					pxc.ConfigStatus = debugSyncStatus(watchedResource)
    				} else if isZtunnel(con) {
    					pxc.ConfigStatus = status.ConfigStatus_UNKNOWN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/proxy_dependencies.go

    func ConfigAffectsProxy(req *model.PushRequest, proxy *model.Proxy) bool {
    	// Empty changes means "all" to get a backward compatibility.
    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    	if proxy.IsWaypointProxy() || proxy.IsZTunnel() {
    		// Optimizations do not apply since scoping uses different mechanism
    		// TODO: implement ambient aware scoping
    		return true
    	}
    
    	for config := range req.ConfigsUpdated {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top