Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 237 for Healthy (0.33 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. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

        assert200Http2Response(execute(url), server.hostName)
        assertThat(client.connectionPool.connectionCount()).isEqualTo(1)
      }
    
      /** Test a previously coalesced connection that's no longer healthy.  */
      @Test
      fun staleCoalescedConnection() {
        server.enqueue(MockResponse())
        server.enqueue(MockResponse())
        val connection = AtomicReference<Connection?>()
        client =
          client.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top