Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for failureThreshold (0.44 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Minimum consecutive failures for the probe to be considered failed after having succeeded.
    	FailureThreshold uint32 `protobuf:"varint,2,opt,name=failureThreshold,proto3" json:"failureThreshold,omitempty"`
    }
    
    func (x *StartupProbe) Reset() {
    	*x = StartupProbe{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	out.InitialDelaySeconds = in.InitialDelaySeconds
    	out.TimeoutSeconds = in.TimeoutSeconds
    	out.PeriodSeconds = in.PeriodSeconds
    	out.SuccessThreshold = in.SuccessThreshold
    	out.FailureThreshold = in.FailureThreshold
    	out.TerminationGracePeriodSeconds = (*int64)(unsafe.Pointer(in.TerminationGracePeriodSeconds))
    	return nil
    }
    
    // Convert_v1_Probe_To_core_Probe is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                  command:
                  - /bin/calico-node
                  - -felix-live
                  - -bird-live
                periodSeconds: 10
                initialDelaySeconds: 10
                failureThreshold: 6
                timeoutSeconds: 10
              readinessProbe:
                exec:
                  command:
                  - /bin/calico-node
                  - -felix-ready
                  - -bird-ready
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Minimum consecutive failures for the probe to be considered failed after having succeeded.
    	// Defaults to 3. Minimum value is 1.
    	// +optional
    	FailureThreshold int32 `json:"failureThreshold,omitempty" protobuf:"varint,6,opt,name=failureThreshold"`
    	// Optional duration in seconds the pod needs to terminate gracefully upon probe failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	allErrs = append(allErrs, ValidateNonnegativeField(int64(probe.SuccessThreshold), fldPath.Child("successThreshold"))...)
    	allErrs = append(allErrs, ValidateNonnegativeField(int64(probe.FailureThreshold), fldPath.Child("failureThreshold"))...)
    	if probe.TerminationGracePeriodSeconds != nil && *probe.TerminationGracePeriodSeconds <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      optional int32 successThreshold = 5;
    
      // Minimum consecutive failures for the probe to be considered failed after having succeeded.
      // Defaults to 3. Minimum value is 1.
      // +optional
      optional int32 failureThreshold = 6;
    
      // Optional duration in seconds the pod needs to terminate gracefully upon probe failure.
      // The grace period is the duration in seconds after the processes running in the pod are sent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// Must be 1 for liveness and startup.
    	// +optional
    	SuccessThreshold int32
    	// Minimum consecutive failures for the probe to be considered failed after having succeeded.
    	// +optional
    	FailureThreshold int32
    	// Optional duration in seconds the pod needs to terminate gracefully upon probe failure.
    	// The grace period is the duration in seconds after the processes running in the pod are sent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"successThreshold":              "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.",
    	"failureThreshold":              "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      optional int32 successThreshold = 5;
    
      // Minimum consecutive failures for the probe to be considered failed after having succeeded.
      // Defaults to 3. Minimum value is 1.
      // +optional
      optional int32 failureThreshold = 6;
    
      // Optional duration in seconds the pod needs to terminate gracefully upon probe failure.
      // The grace period is the duration in seconds after the processes running in the pod are sent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ExecAction"
                  }
                ],
                "description": "Exec specifies the action to take."
              },
              "failureThreshold": {
                "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
                "format": "int32",
                "type": "integer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top