Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for Petry (0.03 sec)

  1. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	t.Helper()
    	assert.EventuallyEqual(t, func() int {
    		return len(m.component.All())
    	}, expectedControllerCount, retry.Message(timeoutName), retry.Delay(time.Millisecond*10), retry.Timeout(time.Second*5))
    }
    
    func initController(client kube.CLIClient, ns string, stop <-chan struct{}) *multicluster.Controller {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. releasenotes/notes/50596.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50596
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 217 bytes
    - Viewed (0)
  3. 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)
  4. samples/ambient-argo/meta-application.yaml

        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        directory:
          include: application.yaml
      project: default
      syncPolicy:
        automated:
          prune: true
          selfHeal: true
        retry:
          limit: 2
          backoff:
            duration: 5s
            maxDuration: 3m0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/uninstall_test.go

    			reItemList = append(reItemList, reList...)
    			reStrlist = append(reStrlist, reStr...)
    		}
    		return inspectRemainingResources(reItemList, reStrlist, purge)
    	}, retry.Delay(checkResourceDelay), retry.Timeout(checkResourceTimeout))
    }
    
    // getRemainingResourcesCluster get specific resources from the cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/ztunnelserver_test.go

    	assert.Equal(t, len(fds), 0)
    
    	sent := m.Payload.(*zdsapi.WorkloadRequest_SnapshotSent).SnapshotSent
    	if sent == nil {
    		panic("expected snapshot sent")
    	}
    	sendAck(ztunClient)
    	ztunClient.Close()
    	// this will retry for a bit, so shouldn't flake
    	mt.Assert(ztunnelConnected.Name(), nil, monitortest.Exactly(0))
    }
    
    func TestZtunnelRemovePod(t *testing.T) {
    	ztunnelKeepAliveCheckInterval = time.Second / 10
    	mt := monitortest.New(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    				"Please add the CRD then restart the istiod deployment", c.logPrefix())
    			c.mcsSupported = false
    
    			// Do not return the error, so that the queue does not attempt a retry.
    			return nil
    		}
    	}
    
    	if err != nil {
    		log.Warnf("%s failed creating ServiceExport %s/%s: %v", c.logPrefix(), svc.Namespace, svc.Name, err)
    		return err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/test/util/retry/retry.go

    //  limitations under the License.
    
    package retry
    
    import (
    	"errors"
    	"fmt"
    	"time"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test"
    )
    
    var scope = log.RegisterScope("retry", "logs for retries")
    
    const (
    	// DefaultTimeout the default timeout for the entire retry operation
    	DefaultTimeout = time.Second * 30
    
    	// DefaultDelay the default delay between successive retry attempts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. 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)
Back to top