Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 135 for Healthy (0.12 sec)

  1. samples/bookinfo/src/productpage/productpage.py

                                  table_attributes="class=\"table table-condensed table-bordered table-hover\"")
    
        return render_template('index.html', serviceTable=table)
    
    
    @app.route('/health')
    def health():
        return 'Product page is healthy'
    
    
    @app.route('/login', methods=['POST'])
    def login():
        user = request.values.get('username')
        response = app.make_response(redirect(request.referrer))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/testing/testserver.go

    	}
    
    	if !instanceOptions.SkipHealthzCheck {
    		t.Logf("Waiting for /healthz to be ok...")
    
    		// wait until healthz endpoint returns ok
    		err = wait.Poll(100*time.Millisecond, time.Minute, func() (bool, error) {
    			select {
    			case err := <-errCh:
    				return false, err
    			default:
    			}
    
    			req := client.CoreV1().RESTClient().Get().AbsPath("/healthz")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control.go

    	for target := len(replicas) - 1; target >= updateMin && deletedPods < podsToDelete; target-- {
    
    		// delete the Pod if it is healthy and the revision doesnt match the target
    		if getPodRevision(replicas[target]) != updateRevision.Name && !isTerminating(replicas[target]) {
    			// delete the Pod if it is healthy and the revision doesnt match the target
    			logger.V(2).Info("StatefulSet terminating Pod for update",
    				"statefulSet", klog.KObj(set),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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