Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 195 for Petry (0.08 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/configdump.json

                "retry_host_predicate": [
                 {
                  "name": "envoy.retry_host_predicates.previous_hosts",
                  "typed_config": {
                   "@type": "type.googleapis.com/envoy.extensions.retry.host.previous_hosts.v3.PreviousHostsPredicate"
                  }
                 }
                ],
                "host_selection_retry_max_attempts": "5",
                "retriable_status_codes": [
                 503
                ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. pkg/envoy/agent.go

    				return
    			default:
    				if err != nil {
    					log.Errorf(err.Error())
    					retryCount++
    					// Max retry 5 times
    					if retryCount > 4 {
    						a.abortCh <- errAbort
    						log.Warnf("Graceful termination logic ended prematurely, error while obtaining downstream_cx_active stat (Max retry %d exceeded)", retryCount)
    						break graceful_loop
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pkg/webhooks/validation/controller/controller.go

    		controllers.WithReconciler(c.Reconcile),
    		// Webhook patching has to be retried forever. But the retries would be rate limited.
    		controllers.WithMaxAttempts(math.MaxInt),
    		// Retry with backoff. Failures could be from conflicts of other instances (quick retry helps), or
    		// longer lasting concerns which will eventually be retried on 1min interval.
    		// Unlike the mutating webhook controller, we do not use NewItemFastSlowRateLimiter. This is because
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. tests/integration/telemetry/tracing/tracing.go

    			continue
    		}
    
    		_, err := cltInstance.Call(echo.CallOptions{
    			To: server,
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    				Headers: headers,
    			},
    			Retry: echo.Retry{
    				NoRetry: true,
    			},
    		})
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pilot/pkg/autoregistration/controller.go

    	}
    
    	// check if this was actually disconnected AFTER this connTime
    	// this check can miss, but when it does the `Update` will fail due to versioning
    	// and retry. The retry includes this check and passes the next time.
    	if timestamp, ok := wle.Annotations[annotation.IoIstioDisconnectedAt.Name]; ok {
    		disconnTime, _ := time.Parse(timeFormat, timestamp)
    		if conTime.Before(disconnTime) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    				// found (this is actually bad, but the failure condition is inverted later a bit awkward)
    				return nil
    			}
    			return fmt.Errorf("no waypoints found")
    		}, retry.Timeout(1*time.Second), retry.BackoffDelay(time.Millisecond*100))
    		if waypointError == nil {
    			t.Fatal("Waypoint for non-existent tag foo created deployment!")
    		}
    	})
    }
    
    func TestRemoveAddWaypoint(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pkg/test/kube/dump.go

    	var fw kube.PortForwarder
    	// add a retry loop since sometimes reserving a port fails
    	err := retry.UntilSuccess(func() error {
    		var err error
    		fw, err = c.NewPortForwarder(pod.Name, pod.Namespace, "", 0, port)
    		if err != nil {
    			return err
    		}
    		if err = fw.Start(); err != nil {
    			return err
    		}
    		return nil
    	}, retry.MaxAttempts(5), retry.Delay(time.Millisecond*10))
    	return fw, err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    	reconciles := atomic.NewInt32(0)
    	wantReconcile := int32(0)
    	expectReconciled := func() {
    		t.Helper()
    		wantReconcile++
    		assert.EventuallyEqual(t, reconciles.Load, wantReconcile, retry.Timeout(time.Second*5), retry.Message("no reconciliation"))
    	}
    
    	d.patcher = func(g schema.GroupVersionResource, name string, namespace string, data []byte, subresources ...string) error {
    		if g == gvr.Service {
    			reconciles.Inc()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. security/pkg/k8s/configutil.go

    			},
    		}
    		if _, err := client.Create(configmap); err != nil {
    			// Namespace may be deleted between now... and our previous check. Just skip this, we cannot create into deleted ns
    			// And don't retry a create if the namespace is terminating
    			if errors.IsAlreadyExists(err) || errors.HasStatusCause(err, v1.NamespaceTerminatingCause) {
    				return nil
    			}
    			if errors.IsForbidden(err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/xds_cache_test.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	proxy = &model.Proxy{Metadata: &model.NodeMetadata{}}
    	any1  = &discovery.Resource{Resource: &anypb.Any{TypeUrl: "foo"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top