Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for initialDelaySeconds (0.4 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	if err := Convert_v1_ProbeHandler_To_core_ProbeHandler(&in.ProbeHandler, &out.ProbeHandler, s); err != nil {
    		return err
    	}
    	out.InitialDelaySeconds = in.InitialDelaySeconds
    	out.TimeoutSeconds = in.TimeoutSeconds
    	out.PeriodSeconds = in.PeriodSeconds
    	out.SuccessThreshold = in.SuccessThreshold
    	out.FailureThreshold = in.FailureThreshold
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

              livenessProbe:
                exec:
                  command:
                  - /bin/calico-node
                  - -felix-live
                  - -bird-live
                periodSeconds: 10
                initialDelaySeconds: 10
                failureThreshold: 6
                timeoutSeconds: 10
              readinessProbe:
                exec:
                  command:
                  - /bin/calico-node
                  - -felix-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)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
    	// +optional
    	InitialDelaySeconds int32 `json:"initialDelaySeconds,omitempty" protobuf:"varint,2,opt,name=initialDelaySeconds"`
    	// Number of seconds after which the probe times out.
    	// Defaults to 1 second. Minimum value is 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    		return allErrs
    	}
    	allErrs = append(allErrs, validateHandler(handlerFromProbe(&probe.ProbeHandler), gracePeriod, fldPath)...)
    
    	allErrs = append(allErrs, ValidateNonnegativeField(int64(probe.InitialDelaySeconds), fldPath.Child("initialDelaySeconds"))...)
    	allErrs = append(allErrs, ValidateNonnegativeField(int64(probe.TimeoutSeconds), fldPath.Child("timeoutSeconds"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
      // +optional
      optional int32 initialDelaySeconds = 2;
    
      // Number of seconds after which the probe times out.
      // Defaults to 1 second. Minimum value is 1.
      // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    type Probe struct {
    	// The action taken to determine the health of a container
    	ProbeHandler
    	// Length of time before health checking is activated.  In seconds.
    	// +optional
    	InitialDelaySeconds int32
    	// Length of time before health checking times out.  In seconds.
    	// +optional
    	TimeoutSeconds int32
    	// How often (in seconds) to perform the probe.
    	// +optional
    	PeriodSeconds int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_Probe = map[string]string{
    	"":                              "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
    	"initialDelaySeconds":           "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
      // +optional
      optional int32 initialDelaySeconds = 2;
    
      // Number of seconds after which the probe times out.
      // Defaults to 1 second. Minimum value is 1.
      // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  }
                ],
                "description": "HTTPGet specifies the http request to perform."
              },
              "initialDelaySeconds": {
                "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
    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