Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for notReady (0.3 sec)

  1. cluster/validate-cluster.sh

          exit 1
        else
          continue
        fi
      fi
      found=$(echo -n "${node}" | wc -l)
      # Use grep || true so that empty result doesn't return nonzero exit code.
      ready=$(echo -n "${node}" | grep -c -v "NotReady" || true)
    
      if (( "${found}" == "${EXPECTED_NUM_NODES}" )) && (( "${ready}" == "${EXPECTED_NUM_NODES}")); then
        break
      elif (( "${found}" > "${EXPECTED_NUM_NODES}" )); then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				if currentReadyCondition.Status != v1.ConditionTrue && observedReadyCondition.Status == v1.ConditionTrue {
    					// If error happened during node status transition (Ready -> NotReady)
    					// we need to mark node for retry to force MarkPodsNotReady execution
    					// in the next iteration.
    					nc.nodesToRetry.Store(node.Name, struct{}{})
    				}
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. cni/pkg/install/install.go

    	default:
    		// Valid configuration; set isReady to true and wait for modifications before checking again
    		setReady(in.isReady)
    		cniInstalls.With(resultLabel.Value(resultSuccess)).Increment()
    		// Pod set to "NotReady" before termination
    		return watcher.Wait(ctx)
    	}
    }
    
    // checkValidCNIConfig returns an error if an invalid CNI configuration is detected
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    		containers           []containerTemplate // templates of containers
    		remain               []int               // template indexes of remaining sandboxes
    		evictTerminatingPods bool
    	}{
    		{
    			description: "notready sandboxes without containers for deleted pods should be garbage collected.",
    			sandboxes: []sandboxTemplate{
    				makeGCSandbox(pods[2], 0, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, false, false, 0),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    			}
    
    			// Version skew workaround. See: https://github.com/kubernetes/kubernetes/issues/16961
    			assert.Equal(t, v1.NodeReady, updatedNode.Status.Conditions[len(updatedNode.Status.Conditions)-1].Type,
    				"NotReady should be last")
    			assert.Len(t, updatedNode.Status.Images, len(expectedImageList))
    			assert.True(t, apiequality.Semantic.DeepEqual(expectedNode, updatedNode), "%s", cmp.Diff(expectedNode, updatedNode))
    		})
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters.go

    			node.Status.Capacity = v1.ResourceList{}
    		}
    
    		var devicePluginAllocatable v1.ResourceList
    		var devicePluginCapacity v1.ResourceList
    		var removedDevicePlugins []string
    
    		// TODO: Post NotReady if we cannot get MachineInfo from cAdvisor. This needs to start
    		// cAdvisor locally, e.g. for test-cmd.sh, and in integration test.
    		info, err := machineInfoFunc()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller.go

    	return !ok
    }
    
    // truncateEndpoints by best effort will distribute the endpoints over the subsets based on the proportion
    // of endpoints per subset and will prioritize Ready Endpoints over NotReady Endpoints.
    func truncateEndpoints(endpoints *v1.Endpoints) bool {
    	totalReady := 0
    	totalNotReady := 0
    	for _, subset := range endpoints.Subsets {
    		totalReady += len(subset.Addresses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. pkg/volume/plugins.go

    type KubeletVolumeHost interface {
    	// SetKubeletError lets plugins set an error on the Kubelet runtime status
    	// that will cause the Kubelet to post NotReady status with the error message provided
    	SetKubeletError(err error)
    
    	// GetInformerFactory returns the informer factory for CSIDriverLister
    	GetInformerFactory() informers.SharedInformerFactory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

    server in a given timeframe for whatever reasons (networking issue, machine
    failure, etc.). Normally when kube-up script will encounter even one NotReady
    node it will fail, even though the cluster most likely will be working. We
    added an environmental variable to kube-up ALLOWED\_NOTREADY\_NODES that
    defines the number of nodes that if not Ready in time won’t cause kube-up
    failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.14.md

    - The deprecated taints `node.alpha.kubernetes.io/notReady` and `node.alpha.kubernetes.io/unreachable` are no longer supported or adjusted. These uses should be replaced with `node.kubernetes.io/not-ready` and `node.kubernetes.io/unreachable`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
Back to top