-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnode-diskpressure-variables.tf
57 lines (46 loc) · 1.5 KB
/
node-diskpressure-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
52
53
54
55
56
57
variable "node_diskpressure_enabled" {
type = bool
default = true
}
variable "node_diskpressure_critical" {
type = number
default = 0
description = "alert is raised when (desired - running) > node_diskpressure_critical"
}
variable "node_diskpressure_evaluation_period" {
type = string
default = "last_5m"
}
variable "node_diskpressure_note" {
type = string
default = ""
}
variable "node_diskpressure_docs" {
type = string
default = "Disk pressure is a condition indicating that a node is using too much disk space or is using disk space too fast, according to the thresholds you have set in your Kubernetes configuration. This is important to monitor because it might mean that you need to add more disk space, if your application legitimately needs more space. Or it might mean that an application is misbehaving and filling up the disk prematurely in an unanticipated manner. Either way, it’s a condition which needs your attention."
}
variable "node_diskpressure_filter_override" {
type = string
default = ""
}
variable "node_diskpressure_alerting_enabled" {
type = bool
default = true
}
variable "node_diskpressure_no_data_timeframe" {
type = number
default = null
}
variable "node_diskpressure_notify_no_data" {
type = bool
default = false
}
variable "node_diskpressure_ok_threshold" {
type = number
default = null
}
variable "node_diskpressure_priority" {
description = "Number from 1 (high) to 5 (low)."
type = number
default = 3
}