Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for not_ready (0.14 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    		assert.Equal(t, v1.NodeReady, updatedNode.Status.Conditions[lastIndex].Type, "NodeReady should be the last condition")
    		assert.NotEmpty(t, updatedNode.Status.Conditions[lastIndex].Message)
    
    		updatedNode.Status.Conditions[lastIndex].Message = ""
    		expectedNode.Status.Conditions[lastIndex] = v1.NodeCondition{
    			Type:               v1.NodeReady,
    			Status:             status,
    			Reason:             reason,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters.go

    		// NOTE(aaronlevy): NodeReady condition needs to be the last in the list of node conditions.
    		// This is due to an issue with version skewed kubelet and master components.
    		// ref: https://github.com/kubernetes/kubernetes/issues/16961
    		currentTime := metav1.NewTime(nowFunc())
    		newNodeReadyCondition := v1.NodeCondition{
    			Type:              v1.NodeReady,
    			Status:            v1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. plugin/pkg/admission/nodetaint/admission.go

    	}
    
    	node, ok := a.GetObject().(*api.Node)
    	if !ok {
    		return admission.NewForbidden(a, fmt.Errorf("unexpected type %T", a.GetObject()))
    	}
    
    	// Taint node with NotReady taint at creation. This is needed to make sure
    	// that nodes are added to the cluster with the NotReady taint. Otherwise,
    	// a new node may receive the taint with some delay causing pods to be
    	// scheduled on a not-ready node. Node controller will remove the taint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/well_known_taints.go

    	// and removed when node becomes ready.
    	TaintNodeNotReady = "node.kubernetes.io/not-ready"
    
    	// TaintNodeUnreachable will be added when node becomes unreachable
    	// (corresponding to NodeReady status ConditionUnknown)
    	// and removed when node becomes reachable (NodeReady status ConditionTrue).
    	TaintNodeUnreachable = "node.kubernetes.io/unreachable"
    
    	// TaintNodeUnschedulable will be added when node becomes unschedulable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 16:23:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. pkg/kubelet/events/event.go

    	FailedToInspectImage    = "InspectFailed"
    	ErrImageNeverPullPolicy = "ErrImageNeverPull"
    	BackOffPullImage        = "BackOff"
    )
    
    // kubelet event reason list
    const (
    	NodeReady                            = "NodeReady"
    	NodeNotReady                         = "NodeNotReady"
    	NodeSchedulable                      = "NodeSchedulable"
    	NodeNotSchedulable                   = "NodeNotSchedulable"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/configuration/configuration_manager.go

    		bootstrapGracePeriod: defaultBootstrapGraceperiod,
    	}
    	return &p
    }
    
    func (a *poller) lastError(err error) {
    	a.lock.Lock()
    	defer a.lock.Unlock()
    	a.lastErr = err
    }
    
    func (a *poller) notReady() {
    	a.lock.Lock()
    	defer a.lock.Unlock()
    	a.ready = false
    }
    
    func (a *poller) bootstrapping() {
    	// bootstrapGracePeriod is read-only, so no lock is required
    	timer := time.NewTimer(a.bootstrapGracePeriod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 02:02:38 UTC 2017
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. pkg/api/v1/endpoints/util_test.go

    			}},
    			expect: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "beef::1:2:3:4"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}},
    		}, {
    			name: "one set, one notReady ip, one port",
    			given: []v1.EndpointSubset{{
    				NotReadyAddresses: []v1.EndpointAddress{{IP: "1.2.3.4"}},
    				Ports:             []v1.EndpointPort{{Port: 111}},
    			}},
    			expect: []v1.EndpointSubset{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            new File(temporaryFolder, "jdks/jdk-mac-2/" + DefaultJdkCacheDirectory.MARKER_FILE).createNewFile()
    
            new File(temporaryFolder, "jdks/notReady").tap { mkdirs() }
    
            when:
            def homes = jdkCacheDirectory.listJavaHomes()
    
            then:
            homes == ([install1, install2] as Set)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top