Share via


EphemeralContainerV1.StartupProbe Property

Definition

Specifies the startup probe configuration for the container. A startup probe is used to determine whether the application within the container has started successfully. It is particularly useful for applications that take a long time to start. If the startup probe fails, the container is killed and subject to the pod's restart policy. The probe configuration can include parameters such as initial delay, timeout, period between checks, and thresholds for success or failure.

[YamlDotNet.Serialization.YamlMember(Alias="startupProbe")]
public Aspire.Hosting.Kubernetes.Resources.ProbeV1? StartupProbe { get; set; }
[<YamlDotNet.Serialization.YamlMember(Alias="startupProbe")>]
member this.StartupProbe : Aspire.Hosting.Kubernetes.Resources.ProbeV1 with get, set
Public Property StartupProbe As ProbeV1

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Applies to