Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Healthy (0.13 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		t.Errorf("unexpected error: %v", err)
    	}
    	// 1. monitor node health twice, add untainted node once
    	if err := nodeController.monitorNodeHealth(ctx); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if err := nodeController.monitorNodeHealth(ctx); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	// 2. mark node0 healthy
    	node0, err := fakeNodeHandler.Get(ctx, "node0", metav1.GetOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__policy__v1_openapi.json

    (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow policy means that all running pods (status.phase=\"Running\"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"cs2", "Healthy", "test message", "test error"}}},
    		},
    		// Basic component status with healthy condition.
    		{
    			componentStatus: api.ComponentStatus{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "cs3",
    				},
    				Conditions: []api.ComponentCondition{
    					{
    						Type:    "Healthy",
    						Status:  api.ConditionFalse,
    						Message: "test message",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		opts := HealthOptions{}
    		result := objLayer.Health(ctx, opts)
    
    		metrics = make([]MetricV2, 0, 2+4*len(result.ESHealth))
    
    		metrics = append(metrics, MetricV2{
    			Description: getClusterWriteQuorumMD(),
    			Value:       float64(result.WriteQuorum),
    		})
    
    		health := 1
    		if !result.Healthy {
    			health = 0
    		}
    
    		metrics = append(metrics, MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    istio-ingressgateway: autoscaleEnabled: false ports: ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces. # Note that AWS ELB will by default perform health checks on the first port # on this list. Setting this to the health check port will ensure that health # checks always work. https://github.com/istio/istio/issues/12503 - port: 15021 targetPort: 15021 name: status-port - port: 80 targetPort: 8080 name: http2 - port: 443 targetPort: 8443 name: https...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	}
    
    	klet.runtimeState = newRuntimeState(maxWaitForContainerRuntime)
    	klet.runtimeState.addHealthCheck("PLEG", klet.pleg.Healthy)
    	if utilfeature.DefaultFeatureGate.Enabled(features.EventedPLEG) {
    		klet.runtimeState.addHealthCheck("EventedPLEG", klet.eventedPleg.Healthy)
    	}
    	if _, err := klet.updatePodCIDR(ctx, kubeCfg.PodCIDR); err != nil {
    		klog.ErrorS(err, "Pod CIDR update failed")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "message": {
              "description": "Message about the condition for a component. For example, information about a health check.",
              "type": "string"
            },
            "status": {
              "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            socketPolicy = DisconnectAtEnd,
          ),
        )
        server.enqueue(
          MockResponse(body = "def"),
        )
    
        // Send a separate request which will trigger a GOAWAY frame on the healthy connection.
        val response = getResponse(newRequest("/"))
        assertContent("abc", response)
    
        // Ensure the GOAWAY frame has time to be read and processed.
        Thread.sleep(500)
        assertContent(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	}
    	status := "Unknown"
    	message := ""
    	error := ""
    	for _, condition := range obj.Conditions {
    		if condition.Type == api.ComponentHealthy {
    			if condition.Status == api.ConditionTrue {
    				status = "Healthy"
    			} else {
    				status = "Unhealthy"
    			}
    			message = condition.Message
    			error = condition.Error
    			break
    		}
    	}
    	row.Cells = append(row.Cells, obj.Name, status, message, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top