Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BackoffDelay (0.31 sec)

  1. tests/integration/ambient/waypoint_test.go

    						}
    					} else {
    						return fmt.Errorf("failed to delete multiple gateways: %s not cleaned up", name)
    					}
    				}
    				return nil
    			}, retry.Timeout(15*time.Second), retry.BackoffDelay(time.Millisecond*100))
    
    			// delete all waypoints in namespace, so w3 should be deleted
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"-n",
    				nsConfig.Name(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/ambient/waypoint.go

    			return fmt.Errorf("cannot fetch pod: %v", err)
    		} else if len(pods) != 0 {
    			return fmt.Errorf("waypoint pod is not deleted")
    		}
    		return nil
    	}, retry.Timeout(time.Minute), retry.BackoffDelay(time.Millisecond*100))
    	if waypointError != nil {
    		t.Fatal(waypointError)
    	}
    }
    
    func RemoveWaypointFromService(t framework.TestContext, ns namespace.Instance, service, waypoint string) {
    	if service != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. 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)
  4. pkg/test/framework/components/istio/kube.go

    	istiodLabel   = "pilot"
    )
    
    var (
    	// the retry options for waiting for an individual component to be ready
    	componentDeployTimeout = retry.Timeout(1 * time.Minute)
    	componentDeployDelay   = retry.BackoffDelay(200 * time.Millisecond)
    
    	_ io.Closer       = &istioImpl{}
    	_ Instance        = &istioImpl{}
    	_ resource.Dumper = &istioImpl{}
    )
    
    type istioImpl struct {
    	id                   resource.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top