Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for failureThreshold (0.16 sec)

  1. samples/addons/prometheus.yaml

                timeoutSeconds: 4
                failureThreshold: 3
                successThreshold: 1
              livenessProbe:
                httpGet:
                  path: /-/healthy
                  port: 9090
                  scheme: HTTP
                initialDelaySeconds: 30
                periodSeconds: 15
                timeoutSeconds: 10
                failureThreshold: 3
                successThreshold: 1
              volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. 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)
  3. 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