Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 307 for Healthy (0.15 sec)

  1. pilot/pkg/model/endpointshards.go

    					needPush = true
    				}
    				newIstioEndpoints = append(newIstioEndpoints, nie)
    			} else {
    				// If the endpoint does not exist in shards that means it is a
    				// new endpoint. Always send new healthy endpoints.
    				// Also send new unhealthy endpoints when SendUnhealthyEndpoints is enabled.
    				// This is OK since we disable panic threshold when SendUnhealthyEndpoints is enabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_traffic_policy.go

    	if minHealthPercent >= 0 {
    		// When we are sending unhealthy endpoints, we should disable Panic Threshold. Otherwise
    		// Envoy will send traffic to "Unready" pods when the percentage of healthy hosts fall
    		// below minimum health percentage.
    		if features.SendUnhealthyEndpoints.Load() {
    			minHealthPercent = 0
    		}
    		c.CommonLbConfig.HealthyPanicThreshold = &xdstype.Percent{Value: float64(minHealthPercent)}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				return false, fmt.Errorf("authenticator reported healthy when it should not")
    			}
    
    			if strings.HasPrefix(healthErr.Error(), c.wantHealthErrPrefix) {
    				return true, nil
    			}
    
    			t.Logf("saw health error prefix that did not match: want=%q got=%q", c.wantHealthErrPrefix, healthErr.Error())
    			return false, nil
    		}); err != nil {
    			t.Fatalf("authenticator did not match wanted health error: %v", err)
    		}
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    	add(t, dc.rcStore, rc)
    	dc.sync(ctx, pdbName)
    	// One RC and 200%>1% healthy => disruption allowed
    	ps.VerifyDisruptionAllowed(t, pdbName, 1)
    
    	rc, _ = newReplicationController(t, 1)
    	rc.Name = "rc 2"
    	for i := 0; i < podCount; i++ {
    		updatePodOwnerToRc(t, pods[i], rc)
    	}
    	add(t, dc.rcStore, rc)
    	dc.sync(ctx, pdbName)
    
    	// 100%>1% healthy BUT two RCs => no disruption allowed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top