Show / Hide Table of Contents

Class GroupContainerReadinessProbe

Inheritance
System.Object
GroupContainerReadinessProbe
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.ContainerService.Outputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class GroupContainerReadinessProbe

Fields

View Source

Execs

Commands to be run to validate container readiness. Changing this forces a new resource to be created.

Declaration
public readonly ImmutableArray<string> Execs
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<System.String>
View Source

FailureThreshold

How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is 3 and the minimum value is 1. Changing this forces a new resource to be created.

Declaration
public readonly int? FailureThreshold
Field Value
Type Description
System.Nullable<System.Int32>
View Source

HttpGets

The definition of the httpget for this container as documented in the httpget block below. Changing this forces a new resource to be created.

Declaration
public readonly ImmutableArray<GroupContainerReadinessProbeHttpGet> HttpGets
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<GroupContainerReadinessProbeHttpGet>
View Source

InitialDelaySeconds

Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.

Declaration
public readonly int? InitialDelaySeconds
Field Value
Type Description
System.Nullable<System.Int32>
View Source

PeriodSeconds

How often (in seconds) to perform the probe. The default value is 10 and the minimum value is 1. Changing this forces a new resource to be created.

Declaration
public readonly int? PeriodSeconds
Field Value
Type Description
System.Nullable<System.Int32>
View Source

SuccessThreshold

Minimum consecutive successes for the probe to be considered successful after having failed. The default value is 1 and the minimum value is 1. Changing this forces a new resource to be created.

Declaration
public readonly int? SuccessThreshold
Field Value
Type Description
System.Nullable<System.Int32>
View Source

TimeoutSeconds

Number of seconds after which the probe times out. The default value is 1 and the minimum value is 1. Changing this forces a new resource to be created.

Declaration
public readonly int? TimeoutSeconds
Field Value
Type Description
System.Nullable<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.