Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for sourceLabels (0.79 sec)

  1. pkg/config/validation/virtualservice.go

    	}
    
    	for _, match := range http.Match {
    		if match != nil {
    			if match.Port != 0 {
    				errs = appendErrors(errs, agent.ValidatePort(int(match.Port)))
    			}
    			errs = appendErrors(errs, labels.Instance(match.SourceLabels).Validate())
    			errs = appendErrors(errs, validateGatewayNames(match.Gateways, false))
    			if match.SourceNamespace != "" {
    				if !labels.IsDNS1123Label(match.SourceNamespace) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    	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)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    type: string
                                type: object
                              sourceLabels:
                                additionalProperties:
                                  type: string
                                description: One or more labels that constrain the applicability
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    					{
    						Name: "catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/",
    							},
    						},
    						SourceLabels: map[string]string{
    							"matchingNoSrc": "xxx",
    						},
    					},
    					{
    						Name: "specific match",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                    type: string
                                type: object
                              sourceLabels:
                                additionalProperties:
                                  type: string
                                description: One or more labels that constrain the applicability
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    	if match {
    		reqMatchFacts := []string{}
    
    		if route.Fault != nil {
    			reqMatchFacts = append(reqMatchFacts, fmt.Sprintf("Fault injection %s", route.Fault.String()))
    		}
    
    		// TODO Consider adding Headers, SourceLabels
    
    		for _, trafficMatch := range route.Match {
    			reqMatchFacts = append(reqMatchFacts, renderMatch(trafficMatch))
    		}
    
    		if len(reqMatchFacts) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                    type: string
                                type: object
                              sourceLabels:
                                additionalProperties:
                                  type: string
                                description: One or more labels that constrain the applicability
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    				}
    			}
    		}
    		if catchall {
    			break
    		}
    	}
    
    	if len(out) == 0 {
    		return nil, fmt.Errorf("no routes matched")
    	}
    	return out, nil
    }
    
    // sourceMatchHttp checks if the sourceLabels or the gateways in a match condition match with the
    // labels for the proxy or the gateway name for which we are generating a route
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    	}
    
    	if match.Port != 0 {
    		errs = AppendValidation(errs, agent.ValidatePort(int(match.Port)))
    	}
    	errs = AppendValidation(errs, labels.Instance(match.SourceLabels).Validate())
    	errs = AppendValidation(errs, validateGatewayNames(match.Gateways, false))
    	return
    }
    
    func validateSniHost(sniHost string, context *networking.VirtualService) (errs Validation) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    required: - regex - required: - exact - required: - prefix - required: - regex properties: exact: type: string prefix: type: string regex: description: RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax). type: string type: object sourceLabels: additionalProperties: type: string description: One or more labels that constrain the applicability of a rule to source (client) workloads with the given labels. type: object sourceNamespace: description: Source namespace constraining the applicability...
    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