Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for Petry (0.09 sec)

  1. pkg/test/framework/resource/settings.go

    	FailOnDeprecation bool
    
    	// Local working directory root for creating temporary directories / files in. If left empty,
    	// os.TempDir() will be used.
    	BaseDir string
    
    	// The number of times to retry failed tests.
    	// This should not be depended on as a primary means for reducing test flakes.
    	Retries int
    
    	// If enabled, namespaces will be reused rather than created with dynamic names each time.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tests/integration/ambient/cacert_rotation_test.go

    			}
    
    			// perform one retry to handle race condition where ztunnel cert is refreshed before Istiod certificates are reloaded
    			retry.UntilSuccess(func() error {
    				newWorkloadCert := waitForWorkloadCertUpdate(t, ztunnelPod, sa, istioCtl, originalWorkloadSecret)
    				return verifyWorkloadCert(t, newWorkloadCert, newX509)
    			}, retry.MaxAttempts(2), retry.Timeout(5*time.Minute))
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/customize_metrics_test.go

    				_, err = util.QueryPrometheus(t, cluster, grpcDestinationQuery, promInst)
    				if err != nil {
    					util.PromDiff(t, promInst, cluster, grpcDestinationQuery)
    					return err
    				}
    				return nil
    			}, retry.Delay(1*time.Second), retry.Timeout(300*time.Second))
    			// check tag removed
    			if strings.Contains(httpMetricVal, removedTag) {
    				t.Errorf("failed to remove tag: %v", removedTag)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/analysis/analysis_test.go

      hosts:
      - reviews
      http:
      - route:
        - destination: 
            host: reviews
    `).ApplyOrFail(t)
    			// Status should report error
    			retry.UntilSuccessOrFail(t, func() error {
    				return expectVirtualServiceStatus(t, ns, true)
    			}, retry.Timeout(time.Minute*5))
    			// Apply config to make this not invalid
    			t.ConfigIstio().YAML(ns.Name(), `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. tests/integration/pilot/multi_version_revision_test.go

    					Run(func(t framework.TestContext) {
    						retry.UntilSuccessOrFail(t, func() error {
    							result, err := from.Call(echo.CallOptions{
    								To:    to,
    								Count: 1,
    								Port: echo.Port{
    									Name: trafficType,
    								},
    								Retry: echo.Retry{
    									NoRetry: true,
    								},
    							})
    							return check.And(
    								check.NoError(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    									}
    									if !tracing.VerifyOtelEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
    										return errors.New("cannot find expected traces")
    									}
    									return nil
    								}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
    							})
    						}
    					})
    			}
    		})
    }
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. tests/integration/security/cacert_rotation/main_test.go

    	retry.UntilOrFail(t, func() bool {
    		updateTime, err := getWorkloadCertLastUpdateTime(t, from, istioCtl)
    		if err != nil {
    			t.Logf("failed to get workload cert last update time: %v", err)
    			return false
    		}
    
    		// retry when workload cert is not updated
    		if updateTime.After(lastUpdateTime) {
    			lastUpdateTime = updateTime
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    	t.Helper()
    	for _, i := range instances {
    		i := i
    		attempts := 0
    		retry.UntilSuccessOrFail(t, func() error {
    			// to avoid sleeping for ProxyConfig propagation, we
    			// can just re-trigger injection on every retry.
    			if attempts > 0 {
    				err := i.Restart()
    				if err != nil {
    					return fmt.Errorf("failed to restart echo instance: %v", err)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. bin/build_ztunnel.sh

    DOWNLOAD_COMMAND=""
    function set_download_command () {
      # Try curl.
      if command -v curl > /dev/null; then
        if curl --version | grep Protocols  | grep https > /dev/null; then
          DOWNLOAD_COMMAND="curl -fLSs --retry 5 --retry-delay 1 --retry-connrefused"
          return
        fi
        echo curl does not support https, will try wget for downloading files.
      else
        echo curl is not installed, will try wget for downloading files.
      fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. tests/integration/pilot/cni/cniversionskew_test.go

    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    var (
    	i istio.Instance
    
    	apps = deployment.SingleNamespaceView{}
    )
    
    const (
    	// TODO: replace this with official 1.11 release once available.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top