Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for probe1 (0.15 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// Probes are not allowed for ephemeral containers.
    	// +optional
    	LivenessProbe *Probe `json:"livenessProbe,omitempty" protobuf:"bytes,10,opt,name=livenessProbe"`
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    	ReadinessProbe *Probe `json:"readinessProbe,omitempty" protobuf:"bytes,11,opt,name=readinessProbe"`
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      repeated VolumeDevice volumeDevices = 21;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe livenessProbe = 10;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe readinessProbe = 11;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe startupProbe = 22;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      repeated VolumeDevice volumeDevices = 21;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe livenessProbe = 10;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe readinessProbe = 11;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe startupProbe = 22;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"livenessProbe":            "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. 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)
  5. pkg/apis/core/types.go

    	// +optional
    	VolumeDevices []VolumeDevice
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    	LivenessProbe *Probe
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    	ReadinessProbe *Probe
    	// Probes are not allowed for ephemeral containers.
    	// +optional
    	StartupProbe *Probe
    	// Lifecycle is not allowed for ephemeral containers.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    }
    
    func validateLivenessProbe(probe *core.Probe, gracePeriod int64, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if probe == nil {
    		return allErrs
    	}
    	allErrs = append(allErrs, validateProbe(probe, gracePeriod, fldPath)...)
    	if probe.SuccessThreshold != 1 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("successThreshold"), probe.SuccessThreshold, "must be 1"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.20.md

    - A bug was fixed in kubelet where exec probe timeouts were not respected. This may result in unexpected behavior since the default timeout (if not specified) is `1s` which may be too small for some exec probes. Ensure that pods relying on this behavior are updated to correctly handle probe timeouts. See [configure probe](https://docs.k8s.io/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes) section of the documentation for more details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Probe)(nil), (*core.Probe)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Probe_To_core_Probe(a.(*v1.Probe), b.(*core.Probe), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.Probe)(nil), (*v1.Probe)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.16.md

    - Limit the body length of exec readiness/liveness probes. remote CRIs and Docker shim read a max of 16MB output of which the exec probe itself inspects 10kb. ([#82514](https://github.com/kubernetes/kubernetes/pull/82514), [@dims](https://github.com/dims))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top