Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for notReady (0.1 sec)

  1. pkg/controller/nodelifecycle/config/types.go

    	LargeClusterSizeThreshold int32
    	// Zone is treated as unhealthy in nodeEvictionRate and secondaryNodeEvictionRate when at least
    	// unhealthyZoneThreshold (no less than 3) of Nodes in the zone are NotReady
    	UnhealthyZoneThreshold float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/server.go

    	// Set some defaults
    	s := &Server{
    		ctx:        ctx,
    		kubeClient: client,
    		isReady:    ready,
    		dataplane: &meshDataplane{
    			kubeClient: client.Kube(),
    			netServer:  netServer,
    		},
    	}
    	s.NotReady()
    	s.handlers = setupHandlers(s.ctx, s.kubeClient, s.dataplane, args.SystemNamespace)
    
    	cniServer := startCniPluginServer(ctx, pluginSocket, s.handlers, s.dataplane)
    	err = cniServer.Start()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/health.go

    	}
    
    	notReadyControlPlanes := getNotReadyNodes(nodes.Items)
    	if len(notReadyControlPlanes) != 0 {
    		return errors.Errorf("there are NotReady control-planes in the cluster: %v", notReadyControlPlanes)
    	}
    	return nil
    }
    
    // staticPodManifestHealth makes sure the required static pods are presents
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/grpc_probe_test.go

    	if !wantReady {
    		cfg.ReadinessTimeout = time.Second * 15
    	}
    	_, err := deployment.New(ctx).
    		With(&grpcProbe, cfg).
    		Build()
    	gotReady := err == nil
    	if gotReady != wantReady {
    		ctx.Errorf("grpcProbe app %v, got error %v, want ready = %v", name, err, wantReady)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_mips64.s

    	SYSCALL
    	BEQ	R7, 3(PC)
    	MOVV	$0, R2			// crash on syscall failure
    	MOVV	R2, (R2)
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT,$0
    	MOVV	wait+0(FP), R4		// arg 1 - notdead
    	MOVV	$302, R2		// sys___threxit
    	SYSCALL
    	MOVV	$0, R2			// crash on syscall failure
    	MOVV	R2, (R2)
    	JMP	0(PC)
    
    TEXT runtime·open(SB),NOSPLIT|NOFRAME,$0
    	MOVV	name+0(FP), R4		// arg 1 - path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top