Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ok (0.12 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/workload.go

    		return "None"
    	}
    
    	if svc, ok := services[wl.Waypoint.Destination]; ok {
    		return svc.Name
    	}
    
    	return "NA" // Shouldn't normally reach here
    }
    
    func serviceWaypointName(svc *ZtunnelService, services map[string]*ZtunnelService) string {
    	if svc.Waypoint == nil {
    		return "None"
    	}
    
    	if svc, ok := services[svc.Waypoint.Destination]; ok {
    		return svc.Name
    	}
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 4K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    	// support proxy.istio.io/config on the WorkloadGroup, in the WorkloadGroup spec
    	for _, annotations := range []map[string]string{wg.Annotations, wg.Spec.Metadata.Annotations} {
    		if pcYaml, ok := annotations[annotation.ProxyConfig.Name]; ok {
    			if err := protomarshal.ApplyYAML(pcYaml, meshConfig.DefaultConfig); err != nil {
    				return nil, err
    			}
    			for k, v := range meshConfig.DefaultConfig.ProxyMetadata {
    				proxyMetadata[k] = v
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
Back to top