Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for retryRemoteLocalities (0.32 sec)

  1. releasenotes/notes/33737.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 33737
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 03 06:08:17 UTC 2021
    - 188 bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/retry/retry.go

    			out.RetryOn += ",retriable-status-codes"
    		}
    	}
    
    	if in.PerTryTimeout != nil {
    		out.PerTryTimeout = in.PerTryTimeout
    	}
    
    	if in.RetryRemoteLocalities != nil && in.RetryRemoteLocalities.GetValue() {
    		out.RetryPriority = &route.RetryPolicy_RetryPriority{
    			Name: "envoy.retry_priorities.previous_priorities",
    			ConfigType: &route.RetryPolicy_RetryPriority_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/networking/core/route/retry/retry_test.go

    			},
    		},
    		{
    			name: "TestRetryRemoteLocalities",
    			// Create a route with a retry policy with RetryRemoteLocalities enabled.
    			route: &networking.HTTPRoute{
    				Retries: &networking.HTTPRetry{
    					Attempts: 2,
    					RetryRemoteLocalities: &wrappers.BoolValue{
    						Value: true,
    					},
    				},
    			},
    			assertFunc: func(g *WithT, policy *envoyroute.RetryPolicy) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    			PerTryTimeout: &durationpb.Duration{Seconds: 2},
    			RetryOn:       "600,connect-failure",
    		}, valid: false},
    		{name: "invalid, retryRemoteLocalities configured but attempts set to zero", in: &networking.HTTPRetry{
    			Attempts:              0,
    			RetryRemoteLocalities: &wrapperspb.BoolValue{Value: false},
    		}, valid: false},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                              description: Specifies the conditions under which retry
                                takes place.
                              type: string
                            retryRemoteLocalities:
                              description: Flag to specify whether the retries should
                                retry to other localities.
                              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)
  7. pkg/config/validation/validation.go

    	if retries.Attempts < 0 {
    		errs = multierror.Append(errs, errors.New("attempts cannot be negative"))
    	}
    
    	if retries.Attempts == 0 && (retries.PerTryTimeout != nil || retries.RetryOn != "" || retries.RetryRemoteLocalities != nil) {
    		errs = appendErrors(errs, errors.New("http retry policy configured when attempts are set to 0 (disabled)"))
    	}
    
    	if retries.PerTryTimeout != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

      http:
      - route:
        - destination:
            host: {{ .dstSvc }}
        retries:
          attempts: 3
          perTryTimeout: 2s
          retryOn: gateway-error,connect-failure,refused-stream
          retryRemoteLocalities: true`,
    		opts: echo.CallOptions{
    			Port: echo.Port{
    				Name: "http",
    			},
    			Count: 1,
    			Check: check.OK(),
    		},
    		workloadAgnostic: true,
    	})
    	t.RunTraffic(TrafficTestCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                              description: Specifies the conditions under which retry
                                takes place.
                              type: string
                            retryRemoteLocalities:
                              description: Flag to specify whether the retries should
                                retry to other localities.
                              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)
  10. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                              description: Specifies the conditions under which retry
                                takes place.
                              type: string
                            retryRemoteLocalities:
                              description: Flag to specify whether the retries should
                                retry to other localities.
                              nullable: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
Back to top