Class: Google::Apis::RunV1alpha1::Probe

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb

Overview

Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Probe

Returns a new instance of Probe.



3148
3149
3150
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3148

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#failure_thresholdFixnum

Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. +optional Corresponds to the JSON property failureThreshold

Returns:

  • (Fixnum)


3114
3115
3116
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3114

def failure_threshold
  @failure_threshold
end

#handlerGoogle::Apis::RunV1alpha1::Handler

Handler defines a specific action that should be taken Corresponds to the JSON property handler



3119
3120
3121
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3119

def handler
  @handler
end

#initial_delay_secondsFixnum

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 +optional Corresponds to the JSON property initialDelaySeconds

Returns:

  • (Fixnum)


3126
3127
3128
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3126

def initial_delay_seconds
  @initial_delay_seconds
end

#period_secondsFixnum

How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. +optional Corresponds to the JSON property periodSeconds

Returns:

  • (Fixnum)


3132
3133
3134
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3132

def period_seconds
  @period_seconds
end

#success_thresholdFixnum

Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1. + optional Corresponds to the JSON property successThreshold

Returns:

  • (Fixnum)


3139
3140
3141
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3139

def success_threshold
  @success_threshold
end

#timeout_secondsFixnum

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 +optional Corresponds to the JSON property timeoutSeconds

Returns:

  • (Fixnum)


3146
3147
3148
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3146

def timeout_seconds
  @timeout_seconds
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3153
3154
3155
3156
3157
3158
3159
3160
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3153

def update!(**args)
  @failure_threshold = args[:failure_threshold] if args.key?(:failure_threshold)
  @handler = args[:handler] if args.key?(:handler)
  @initial_delay_seconds = args[:initial_delay_seconds] if args.key?(:initial_delay_seconds)
  @period_seconds = args[:period_seconds] if args.key?(:period_seconds)
  @success_threshold = args[:success_threshold] if args.key?(:success_threshold)
  @timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
end