Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mirrorPercent (0.18 sec)

  1. pkg/config/validation/virtualservice.go

    	// nolint: staticcheck
    	if http.MirrorPercent != nil {
    		if value := http.MirrorPercent.GetValue(); value > 100 {
    			errs = AppendValidation(errs, fmt.Errorf("mirror_percent must have a max value of 100 (it has %d)", value))
    		}
    		errs = AppendValidation(errs, WrapWarning(errors.New(`using deprecated setting "mirrorPercent", use "mirrorPercentage" instead`)))
    	}
    
    	if http.MirrorPercentage != nil {
    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/listener_waypoint.go

    		}
    	}
    	if authority != "" {
    		action.HostRewriteSpecifier = &route.RouteAction_HostRewriteLiteral{
    			HostRewriteLiteral: authority,
    		}
    	}
    
    	if in.Mirror != nil {
    		if mp := istio_route.MirrorPercent(in); mp != nil {
    			action.RequestMirrorPolicies = append(action.RequestMirrorPolicies,
    				istio_route.TranslateRequestMirrorPolicy(in.Mirror, lb.serviceForHostname(host.Name(in.Mirror.Host)), listenerPort, mp))
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          required:
                          - host
                          type: object
                        mirror_percent:
                          maximum: 4294967295
                          minimum: 0
                          nullable: true
                          type: integer
                        mirrorPercent:
                          maximum: 4294967295
                          minimum: 0
                          nullable: true
    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. manifests/charts/base/crds/crd-all.gen.yaml

                          required:
                          - host
                          type: object
                        mirror_percent:
                          maximum: 4294967295
                          minimum: 0
                          nullable: true
                          type: integer
                        mirrorPercent:
                          maximum: 4294967295
                          minimum: 0
                          nullable: true
    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