Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for StartupProbe (0.25 sec)

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

    	// Configures the startup probe for the istio-proxy container.
    	StartupProbe *StartupProbe `protobuf:"bytes,41,opt,name=startupProbe,proto3" json:"startupProbe,omitempty"`
    	// Default port used for the Pilot agent's health checks.
    	StatusPort uint32 `protobuf:"varint,23,opt,name=statusPort,proto3" json:"statusPort,omitempty"`
    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. staging/src/k8s.io/api/core/v1/types.go

    	// This cannot be updated.
    	// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
    	// +optional
    	StartupProbe *Probe `json:"startupProbe,omitempty" protobuf:"bytes,22,opt,name=startupProbe"`
    	// Actions that the management system should take in response to container lifecycle events.
    	// Cannot be updated.
    	// +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)
  3. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, validateReadinessProbe(ctr.ReadinessProbe, gracePeriod, idxPath.Child("readinessProbe"))...)
    			allErrs = append(allErrs, validateStartupProbe(ctr.StartupProbe, gracePeriod, idxPath.Child("startupProbe"))...)
    
    		default:
    			// These fields are disallowed for init containers.
    			if ctr.Lifecycle != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.LivenessProbe = (*core.Probe)(unsafe.Pointer(in.LivenessProbe))
    	out.ReadinessProbe = (*core.Probe)(unsafe.Pointer(in.ReadinessProbe))
    	out.StartupProbe = (*core.Probe)(unsafe.Pointer(in.StartupProbe))
    	out.Lifecycle = (*core.Lifecycle)(unsafe.Pointer(in.Lifecycle))
    	out.TerminationMessagePath = in.TerminationMessagePath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"startupProbe":             "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // and passed its startup probe.
      // Initialized as false, becomes true after startupProbe is considered
      // successful. Resets to false when the container is restarted, or if kubelet
      // loses state temporarily. In both cases, startup probes will run again.
      // Is always true when no startupProbe is defined and container is running and
      // has passed the postStart lifecycle hook. The null value must be treated the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // and passed its startup probe.
      // Initialized as false, becomes true after startupProbe is considered
      // successful. Resets to false when the container is restarted, or if kubelet
      // loses state temporarily. In both cases, startup probes will run again.
      // Is always true when no startupProbe is defined and container is running and
      // has passed the postStart lifecycle hook. The null value must be treated the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// and passed its startup probe.
    	// Initialized as false, becomes true after startupProbe is considered
    	// successful. Resets to false when the container is restarted, or if kubelet
    	// loses state temporarily. In both cases, startup probes will run again.
    	// Is always true when no startupProbe is defined and container is running and
    	// has passed the postStart lifecycle hook. The null value must be treated the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.18.md

    - Containers which specify a `startupProbe` but not a `readinessProbe` were previously considered "ready" before the `startupProbe` completed, but are now considered "not-ready". ([#92196](https://github.com/kubernetes/kubernetes/pull/92196), [@thockin](https://github.com/thockin)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "startupProbe": {
                "allOf": [
                  {
                    "$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)
Back to top