Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for WaitTimeout (0.24 sec)

  1. operator/pkg/helmreconciler/reconciler.go

    	Log clog.Logger
    	// Wait determines if we will wait for resources to be fully applied. Only applies to components that have no
    	// dependencies.
    	Wait bool
    	// WaitTimeout controls the amount of time to wait for resources in a component to become ready before giving up.
    	WaitTimeout time.Duration
    	// Log tracks the installation progress for all components.
    	ProgressLog *progress.Log
    	// Force ignores validation errors
    	Force bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/wait.go

    }
    
    // WaitForResources polls to get the current status of all pods, PVCs, and Services
    // until all are ready or a timeout is reached
    func WaitForResources(objects object.K8sObjects, client kube.Client,
    	waitTimeout time.Duration, dryRun bool, l *progress.ManifestLog,
    ) error {
    	if dryRun || TestMode {
    		return nil
    	}
    
    	if err := waitForCRDs(objects, client); err != nil {
    		return err
    	}
    
    	var notReady []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/install.go

    	waitTimeout time.Duration, l clog.Logger,
    ) error {
    	// Needed in case we are running a test through this path that doesn't start a new process.
    	cache.FlushObjectCaches()
    	opts := &helmreconciler.Options{
    		DryRun: dryRun, Log: l, WaitTimeout: waitTimeout, ProgressLog: progress.NewLog(),
    		Force: force,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

    	waypointName    = constants.DefaultNamespaceWaypoint
    	enrollNamespace bool
    	overwrite       bool
    )
    
    const waitTimeout = 90 * time.Second
    
    func Cmd(ctx cli.Context) *cobra.Command {
    	makeGateway := func(forApply bool) (*gateway.Gateway, error) {
    		ns := ctx.NamespaceOrDefault(ctx.Namespace())
    		if ctx.Namespace() == "" && !forApply {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_test.go

    					err, id)
    				return
    			}
    
    			log.Infof("Received all pushes %v", id)
    			rcvClients.Inc()
    
    			adscConn.Close()
    		}(current)
    	}
    	ok := waitTimeout(wgConnect, to)
    	if !ok {
    		t.Fatal("Failed to connect")
    	}
    	log.Info("Done connecting")
    
    	// All clients are connected - this can start pushing changes.
    	for j := 0; j < nPushes; j++ {
    		if inc {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top