Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 774 for Healthy (0.3 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices.go

    					if pDev, ok := devicePluginMap[devID]; ok && pDev.Topology != nil {
    						if nodes := pDev.Topology.GetNodes(); nodes != nil {
    							NUMANodes = append(NUMANodes, nodes...)
    						}
    					}
    
    					// ID and Healthy are not relevant here.
    					topology = &pluginapi.TopologyInfo{Nodes: NUMANodes}
    				}
    				devicePluginMap[devID] = pluginapi.Device{
    					Topology: topology,
    				}
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/types.go

    	// ControlPlaneComponentHealthCheck is the amount of time to wait for a control plane
    	// component, such as the API server, to be healthy during "kubeadm init" and "kubeadm join".
    	ControlPlaneComponentHealthCheck *metav1.Duration
    
    	// KubeletHealthCheck is the amount of time to wait for the kubelet to be healthy
    	// during "kubeadm init" and "kubeadm join".
    	KubeletHealthCheck *metav1.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// component, such as the API server, to be healthy during "kubeadm init" and "kubeadm join".
    	// Default: 4m
    	// +optional
    	ControlPlaneComponentHealthCheck *metav1.Duration `json:"controlPlaneComponentHealthCheck,omitempty"`
    
    	// KubeletHealthCheck is the amount of time to wait for the kubelet to be healthy
    	// during "kubeadm init" and "kubeadm join".
    	// Default: 4m
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    	if err != nil {
    		return false, err
    	}
    	return taints.TaintKeyExists(node.Spec.Taints, v1.TaintNodeOutOfService), nil
    }
    
    // nodeIsHealthy returns true if the node looks healthy.
    func (rc *reconciler) nodeIsHealthy(nodeName types.NodeName) (bool, error) {
    	node, err := rc.nodeLister.Get(string(nodeName))
    	if err != nil {
    		return false, err
    	}
    	return nodeutil.IsNodeReady(node), nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    // - as the base context for any requests that are made (i.e. for key fetching)
    // Thus, once the lifecycleCtx is canceled, the authenticator must not be used.
    // A caller may check if the authenticator is healthy by calling the HealthCheck method.
    func New(lifecycleCtx context.Context, opts Options) (AuthenticatorTokenWithHealthCheck, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		esc.updateEndpointCacheForSlice(hostname, slice)
    	}
    }
    
    func endpointHealthStatus(svc *model.Service, e v1.Endpoint) model.HealthStatus {
    	if e.Conditions.Ready == nil || *e.Conditions.Ready {
    		return model.Healthy
    	}
    
    	if features.PersistentSessionLabel != "" &&
    		svc != nil &&
    		svc.Attributes.Labels[features.PersistentSessionLabel] != "" &&
    		(e.Conditions.Serving == nil || *e.Conditions.Serving) &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. pkg/controlplane/instance.go

    			controller := defaultservicecidr.NewController(
    				c.Extra.ServiceIPRange,
    				c.Extra.SecondaryServiceIPRange,
    				client,
    			)
    			// The default serviceCIDR must exist before the apiserver is healthy
    			// otherwise the allocators for Services will not work.
    			controller.Start(hookContext)
    			return nil
    		})
    	}
    
    	return s, nil
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// controller. The node health signal update frequency is the minimal of the
    	// two.
    	// There are several constraints:
    	// 1. nodeMonitorGracePeriod must be N times more than  the node health signal
    	//    update frequency, where N means number of retries allowed for kubelet to
    	//    post node status/lease. It is pointless to make nodeMonitorGracePeriod
    	//    be less than the node health signal update frequency, since there will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. pkg/scheduler/eventhandlers_test.go

    			NewConditions: []v1.NodeCondition{{Type: v1.NodeDiskPressure, Status: v1.ConditionTrue, LastHeartbeatTime: metav1.Unix(2, 0)}},
    		},
    		{
    			Name:          "new node has more healthy conditions",
    			Changed:       true,
    			OldConditions: []v1.NodeCondition{},
    			NewConditions: []v1.NodeCondition{{Type: v1.NodeReady, Status: v1.ConditionTrue}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/service.go

    	// Label for locality on the endpoint. This is a "/" separated string.
    	Label string
    
    	// ClusterID where the endpoint is located
    	ClusterID cluster.ID
    }
    
    // Endpoint health status.
    type HealthStatus int32
    
    const (
    	// Healthy.
    	Healthy HealthStatus = 1
    	// Unhealthy.
    	UnHealthy HealthStatus = 2
    	// Draining - the constant matches envoy
    	Draining HealthStatus = 3
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top