Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for NewPodFetch (0.35 sec)

  1. tests/integration/ambient/waypoint_test.go

    			}, retry.Timeout(15*time.Second), retry.BackoffDelay(time.Millisecond*100))
    		})
    }
    
    func checkWaypointIsReady(t framework.TestContext, ns, name string) error {
    	fetch := kubetest.NewPodFetch(t.AllClusters()[0], ns, constants.GatewayNameLabel+"="+name)
    	_, err := kubetest.CheckPodsAreReady(fetch)
    	return err
    }
    
    func TestSimpleHTTPSandwich(t *testing.T) {
    	framework.
    		NewTest(t).
    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. tests/integration/helm/util.go

    func VerifyPodReady(ctx framework.TestContext, cs cluster.Cluster, ns, label string) {
    	retry.UntilSuccessOrFail(ctx, func() error {
    		if _, err := kubetest.CheckPodsAreReady(kubetest.NewPodFetch(cs, ns, label)); err != nil {
    			return fmt.Errorf("%s pod is not ready: %v", label, err)
    		}
    		return nil
    	}, retry.Timeout(RetryTimeOut), retry.Delay(RetryDelay))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. tests/integration/operator/switch_cr_test.go

    				metav1.GetOptions{}); err != nil {
    				return fmt.Errorf("istio operator svc is not ready: %v", err)
    			}
    			if _, err := kube2.CheckPodsAreReady(kube2.NewPodFetch(cs, OperatorNamespace, "")); err != nil {
    				return fmt.Errorf("istio operator pod is not ready: %v", err)
    			}
    
    			return fmt.Errorf("status not found from the istioOperator resource")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    		})
    	})
    }
    
    func TestWaypointChanges(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		getGracePeriod := func(want int64) bool {
    			pods, err := kubetest.NewPodFetch(t.AllClusters()[0], apps.Namespace.Name(), constants.GatewayNameLabel+"=waypoint")()
    			assert.NoError(t, err)
    			for _, p := range pods {
    				grace := p.Spec.TerminationGracePeriodSeconds
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top