Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Healthy (0.51 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cluster/gce/gci/configure-helper.sh

          fi
    
          if ! sudo modprobe -a ip_vs ip_vs_rr ip_vs_wrr ip_vs_sh ${conntrack_module}; then
            # If IPVS modules are not present, make sure the node does not come up as
            # healthy.
            exit 1
          fi
          params+=" --proxy-mode=ipvs --ipvs-sync-period=1m --ipvs-min-sync-period=10s"
          ;;
        nftables)
          # Pass --conntrack-tcp-be-liberal so we can test that this makes the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      gcloud compute health-checks --project "${PROJECT}" create tcp "${MASTER_NAME}-hc" --port=443
    
      gcloud compute backend-services create "${MASTER_NAME}" \
        --project "${PROJECT}" \
        --region "${REGION}" \
        --protocol tcp \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --health-checks "${MASTER_NAME}-hc"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. samples/addons/grafana.yaml

              livenessProbe:
                failureThreshold: 10
                httpGet:
                  path: /api/health
                  port: 3000
                initialDelaySeconds: 60
                timeoutSeconds: 30
              readinessProbe:
                httpGet:
                  path: /api/health
                  port: 3000
          volumes:
            - name: config
              configMap:
                name: grafana
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    			break
    		}
    		if len(h.Command) == 0 {
    			errs = appendErrors(errs, fmt.Errorf("exec.command is required"))
    		}
    	default:
    		errs = appendErrors(errs, fmt.Errorf("unknown health check method %T", m))
    	}
    	return errs
    }
    
    // ValidateServiceEntry validates a service entry.
    var ValidateServiceEntry = RegisterValidateFunc("ValidateServiceEntry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top