Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for destinationSubnets (0.33 sec)

  1. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tls.go

    					// If its bound to a unix domain socket, then ignore the CIDR matches
    					// Unix domain socket bound ports have Port value set to 0
    					if len(match.DestinationSubnets) > 0 && listenPort.Port > 0 {
    						destinationCIDRs = match.DestinationSubnets
    					}
    					matchHash := hashRuntimeTLSMatchPredicates(match)
    					if !matchHasBeenHandled.Contains(matchHash) {
    						out = append(out, &filterChainOpts{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.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: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    disabled. type: string type: object type: array tcp: description: An ordered list of route rules for opaque TCP traffic. items: properties: match: 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 type: array gateways: description: Names of gateways where the rule should be applied. items: type: string type: array port: description: Specifies...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top