Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for GW (0.02 sec)

  1. releasenotes/notes/custom-gw-classname.yaml

    Jonh Wendell <******@****.***> 1709714473 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 574 bytes
    - Viewed (0)
  2. releasenotes/notes/network-gw-metadata.yaml

    dwq <******@****.***> 1704167974 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 03:59:34 UTC 2024
    - 220 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	if d.namespaces != nil {
    		ns = d.namespaces.Get(gw.Namespace, "")
    	}
    	proxyUID, proxyGID := inject.GetProxyIDs(ns)
    
    	defaultName := getDefaultName(gw.Name, &gw.Spec, gi.disableNameSuffix)
    
    	serviceType := gi.defaultServiceType
    	if o, f := gw.Annotations[serviceTypeOverride]; f {
    		serviceType = corev1.ServiceType(o)
    	}
    
    	input := TemplateInput{
    		Gateway:        &gw,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

    			}
    
    			if gw.Labels == nil {
    				gw.Labels = map[string]string{}
    			}
    
    			gw.Labels[constants.AmbientWaypointForTrafficTypeLabel] = trafficType
    		}
    
    		if revision != "" {
    			gw.Labels = map[string]string{label.IoIstioRev.Name: revision}
    		}
    		return &gw, nil
    	}
    	waypointGenerateCmd := &cobra.Command{
    		Use:   "generate",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. istioctl/pkg/waypoint/waypoint_test.go

    		},
    	}
    }
    
    func makeGatewayWithRevision(name, namespace string, programmed, isWaypoint bool, rev string) *gateway.Gateway {
    	gw := makeGateway(name, namespace, programmed, isWaypoint)
    	if gw.Labels == nil {
    		gw.Labels = make(map[string]string)
    	}
    	gw.Labels[label.IoIstioRev.Name] = rev
    	return gw
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 15:53:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    				util.CompareContent(t, resp, filepath.Join("testdata", "deployment", tt.name+".yaml"))
    			}
    			// ensure we didn't mutate the object
    			if !tt.ignore {
    				assert.Equal(t, d.gateways.Get(tt.gw.Name, tt.gw.Namespace), &tt.gw)
    			}
    		})
    	}
    }
    
    func buildFilter(allowedNamespace string) kubetypes.DynamicObjectFilter {
    	return kubetypes.NewStaticObjectFilter(func(obj any) bool {
    		if ns, ok := obj.(string); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/ep_filters.go

    		gateways = model.SortGateways(gateways)
    
    		// Create endpoints for the gateways.
    		for _, gw := range gateways {
    			epWeight := gatewayWeights[gw]
    			if epWeight == 0 {
    				log.Warnf("gateway weight must be greater than 0, scaleFactor is %d", scaleFactor)
    				epWeight = 1
    			}
    			epAddr := util.BuildAddress(gw.Addr, gw.Port)
    
    			// Generate a fake IstioEndpoint to carry network and cluster information.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/network.go

    		for _, gw := range gateways {
    			// what we now have is a service port. If there is a mapping for cluster external ports,
    			// look it up and get the node port for the remote port
    			if nodePort, exists := nodePortMap[gw.Port]; exists {
    				gw.Port = nodePort
    			}
    
    			gw.Cluster = n.clusterID
    			gw.Addr = addr
    			newGateways.Insert(gw)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    	gwCMap map[string]map[string][]string,
    ) {
    	gw := r.Message.(*v1alpha3.Gateway)
    	gwName := r.Metadata.FullName.String()
    	// For pods selected by gw.Selector, find Services that select them and remember those ports
    	gwSelector := klabels.SelectorFromSet(gw.Selector)
    	sGWSelector := gwSelector.String()
    
    	// Check non-exist gateway with particular selector
    	isExists := false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/network.go

    	byNetwork := make(map[network.ID][]NetworkGateway)
    	byNetworkAndCluster := make(map[networkAndCluster][]NetworkGateway)
    	for gw := range gatewaySet {
    		byNetwork[gw.Network] = append(byNetwork[gw.Network], gw)
    		nc := networkAndClusterForGateway(&gw)
    		byNetworkAndCluster[nc] = append(byNetworkAndCluster[nc], gw)
    	}
    
    	var gwNum []int
    	// Sort the gateways in byNetwork, and also calculate the max number
    	// of gateways per network.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top