Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mirrorPercentage (0.22 sec)

  1. tests/integration/pilot/testdata/traffic-mirroring-template.yaml

    metadata:
      name: {{.Name}}
    spec:
      hosts:
        - b
      http:
        - route:
            - destination:
                host: b
          mirror:
            host: {{.MirrorHost}}
    {{- if not .Absent }}
          mirrorPercentage:
            value: {{.Percent}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 24 22:09:33 UTC 2020
    - 306 bytes
    - Viewed (0)
  2. 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)
  3. pkg/config/validation/virtualservice.go

    	}
    
    	if http.MirrorPercentage != nil {
    		value := http.MirrorPercentage.GetValue()
    		if value > 100 {
    			errs = AppendValidation(errs, fmt.Errorf("mirror_percentage must have a max value of 100 (it has %f)", value))
    		}
    		if value < 0 {
    			errs = AppendValidation(errs, fmt.Errorf("mirror_percentage must have a min value of 0 (it has %f)", value))
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top