Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for destinationSubnets (0.46 sec)

  1. pilot/pkg/networking/core/gateway.go

    		}
    	}
    	return matchingHosts
    }
    
    func convertTLSMatchToL4Match(tlsMatch *networking.TLSMatchAttributes) *networking.L4MatchAttributes {
    	return &networking.L4MatchAttributes{
    		DestinationSubnets: tlsMatch.DestinationSubnets,
    		Port:               tlsMatch.Port,
    		SourceLabels:       tlsMatch.SourceLabels,
    		Gateways:           tlsMatch.Gateways,
    		SourceNamespace:    tlsMatch.SourceNamespace,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		Hosts:    []string{"test.com"},
    		Gateways: []string{"mesh"},
    		Tcp: []*networking.TCPRoute{
    			{
    				Match: []*networking.L4MatchAttributes{
    					{
    						DestinationSubnets: []string{"10.10.0.0/24"},
    						Port:               8080,
    					},
    				},
    				Route: []*networking.RouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "test.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	} else {
    		for _, sniHost := range match.SniHosts {
    			errs = AppendValidation(errs, validateSniHost(sniHost, context))
    		}
    	}
    
    	for _, destinationSubnet := range match.DestinationSubnets {
    		errs = AppendValidation(errs, agent.ValidateIPSubnet(destinationSubnet))
    	}
    
    	if match.Port != 0 {
    		errs = AppendValidation(errs, agent.ValidatePort(int(match.Port)))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          description: Match conditions to be satisfied for the rule to
                            be activated.
                          items:
                            properties:
                              destinationSubnets:
                                description: IPv4 or IPv6 ip addresses of destination
                                  with optional subnet.
                                items:
                                  type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                          description: Match conditions to be satisfied for the rule to
                            be activated.
                          items:
                            properties:
                              destinationSubnets:
                                description: IPv4 or IPv6 ip addresses of destination
                                  with optional subnet.
                                items:
                                  type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top