-
Notifications
You must be signed in to change notification settings - Fork 6
/
pod-ready-variables.tf
51 lines (41 loc) · 1.23 KB
/
pod-ready-variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
variable "pod_ready_enabled" {
type = bool
default = true
}
variable "pod_ready_evaluation_period" {
type = string
default = "last_30m"
}
variable "pod_ready_note" {
type = string
default = ""
}
variable "pod_ready_docs" {
type = string
default = "A pod may be running but not available, meaning it is not ready and able to accept traffic. This is normal during certain circumstances, such as when a pod is newly launched or when a change is made and deployed to the specification of that pod. But if you see spikes in the number of unavailable pods, or pods that are consistently unavailable, it might indicate a problem with their configuration.\nhttps://www.datadoghq.com/blog/monitoring-kubernetes-performance-metrics/"
}
variable "pod_ready_filter_override" {
type = string
default = ""
}
variable "pod_ready_alerting_enabled" {
type = bool
default = true
}
variable "pod_ready_no_data_timeframe" {
type = number
default = null
}
variable "pod_ready_notify_no_data" {
type = bool
default = false
}
variable "pod_ready_ok_threshold" {
type = number
default = null
}
variable "pod_ready_priority" {
description = "Number from 1 (high) to 5 (low)."
type = number
default = 3
}