Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for failureThreshold (0.45 sec)

  1. pkg/config/validation/validation.go

    	}
    	if probe.SuccessThreshold < 0 {
    		errs = appendErrors(errs, fmt.Errorf("successThreshold must be non-negative"))
    	}
    	if probe.FailureThreshold < 0 {
    		errs = appendErrors(errs, fmt.Errorf("failureThreshold must be non-negative"))
    	}
    	switch m := probe.HealthCheckMethod.(type) {
    	case *networking.ReadinessProbe_HttpGet:
    		h := m.HttpGet
    		if h == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

                - name: "GF_SECURITY_ADMIN_PASSWORD"
                  value: "admin"
                - name: "GF_SECURITY_ADMIN_USER"
                  value: "admin"
              livenessProbe:
                failureThreshold: 10
                httpGet:
                  path: /api/health
                  port: 3000
                initialDelaySeconds: 60
                timeoutSeconds: 30
              readinessProbe:
                httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top