Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for successThreshold (0.13 sec)

  1. pkg/config/validation/validation.go

    	}
    	if probe.TimeoutSeconds < 0 {
    		errs = appendErrors(errs, fmt.Errorf("timeoutSeconds must be non-negative"))
    	}
    	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"))
    	}
    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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
              "format": "int32",
              "type": "integer"
            },
            "successThreshold": {
              "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
              "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top