Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 774 for Healthy (0.16 sec)

  1. 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)
  2. 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)
  3. pkg/workloadapi/workload.pb.go

    )
    
    type WorkloadStatus int32
    
    const (
    	// Workload is healthy and ready to serve traffic.
    	WorkloadStatus_HEALTHY WorkloadStatus = 0
    	// Workload is unhealthy and NOT ready to serve traffic.
    	WorkloadStatus_UNHEALTHY WorkloadStatus = 1
    )
    
    // Enum value maps for WorkloadStatus.
    var (
    	WorkloadStatus_name = map[int32]string{
    		0: "HEALTHY",
    		1: "UNHEALTHY",
    	}
    	WorkloadStatus_value = map[string]int32{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  description: Outlier detection will be enabled as long
                                    as the associated load balancing pool has at least
                                    min_health_percent hosts in healthy mode.
                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    	socketExists := socketFileExists(socketPath)
    	if !socketExists {
    		return false, nil
    	}
    
    	err := socketHealthCheck(ctx, socketPath)
    	if err != nil {
    		log.Debugf("SDS socket detected but not healthy: %v", err)
    		err = os.Remove(socketPath)
    		if err != nil {
    			return false, fmt.Errorf("existing SDS socket could not be removed: %v", err)
    		}
    		return false, nil
    	}
    
    	return true, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// The default set of healthz checks. There might be more added via AddHealthChecks dynamically.
    	HealthzChecks []healthz.HealthChecker
    	// The default set of livez checks. There might be more added via AddHealthChecks dynamically.
    	LivezChecks []healthz.HealthChecker
    	// The default set of readyz-only checks. There might be more added via AddReadyzChecks dynamically.
    	ReadyzChecks []healthz.HealthChecker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                                  description: Outlier detection will be enabled as long
                                    as the associated load balancing pool has at least
                                    min_health_percent hosts in healthy mode.
                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/controllermanager.go

    	if cfgz, err := configz.New(ConfigzName); err == nil {
    		cfgz.Set(c.ComponentConfig)
    	} else {
    		logger.Error(err, "Unable to register configz")
    	}
    
    	// Setup any healthz checks we will want to use.
    	var checks []healthz.HealthChecker
    	var electionChecker *leaderelection.HealthzAdaptor
    	if c.ComponentConfig.Generic.LeaderElection.LeaderElect {
    		electionChecker = leaderelection.NewLeaderHealthzAdaptor(time.Second * 20)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_plugin.go

    		return errors.New(log("Error uninstalling CSI driver: %v", err))
    	}
    
    	return nil
    }
    
    // waitForAPIServerForever waits forever to get a CSINode instance as a proxy
    // for a healthy APIServer
    func waitForAPIServerForever(client clientset.Interface, nodeName types.NodeName) error {
    	var lastErr error
    	// Served object is discarded so no risk to have stale object with benefit to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        }
        if (connection.isHealthy(false)) {
          throw TimeoutException("connection didn't shutdown within timeout")
        }
      }
    
      /**
       * This simulates a race condition where we receive a healthy HTTP/2 connection and just prior to
       * writing our request, we get a GOAWAY frame from the server.
       */
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top