-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
gatus.tf
158 lines (155 loc) · 3.57 KB
/
gatus.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
resource "kubernetes_config_map_v1" "gatus" {
metadata {
name = var.name
namespace = var.namespace
}
data = {
"config.yaml" = var.configuration_file_content
}
}
resource "kubernetes_deployment_v1" "gatus" {
metadata {
name = var.name
namespace = var.namespace
labels = {
app = var.name
}
}
spec {
replicas = 1
selector {
match_labels = {
app = var.name
}
}
template {
metadata {
name = var.name
namespace = var.namespace
labels = {
app = var.name
}
annotations = {
// Used to automatically trigger restart on config change
config_hash = sha1(jsonencode(kubernetes_config_map_v1.gatus.data))
}
}
spec {
container {
name = var.name
image = var.image
image_pull_policy = "IfNotPresent"
port {
name = "http"
container_port = 8080
}
resources {
requests = {
cpu = var.cpu_request
memory = var.memory_request
}
limits = {
cpu = var.cpu_limit
memory = var.memory_limit
}
}
dynamic "env" {
for_each = var.environment_variables
content {
name = env.key
value = env.value
}
}
readiness_probe {
http_get {
path = "/health"
port = "8080"
}
initial_delay_seconds = 2
period_seconds = 8
failure_threshold = 1
success_threshold = 1
timeout_seconds = 2
}
liveness_probe {
http_get {
path = "/health"
port = "8080"
}
initial_delay_seconds = 2
period_seconds = 8
failure_threshold = 3
success_threshold = 1
timeout_seconds = 2
}
volume_mount {
mount_path = "/config"
name = "${var.name}-config"
}
}
volume {
name = "${var.name}-config"
config_map {
name = kubernetes_config_map_v1.gatus.metadata[0].name
}
}
security_context {
sysctl { # Needed for ICMP to work without root privileges
name = "net.ipv4.ping_group_range"
value = "0 65536"
}
}
node_selector = var.node_selector
}
}
}
}
resource "kubernetes_service_v1" "gatus" {
metadata {
name = var.name
namespace = var.namespace
}
spec {
port {
protocol = "TCP"
name = "http"
port = 8080
}
selector = {
app = var.name
}
}
}
resource "kubernetes_ingress_v1" "gatus" {
count = var.ingress_host != "" ? 1 : 0
metadata {
name = var.name
namespace = var.namespace
annotations = var.ingress_annotations
}
spec {
rule {
host = var.ingress_host
http {
path {
backend {
service {
name = var.name
port {
number = 8080
}
}
}
path = "/"
}
}
}
dynamic "tls" {
for_each = var.ingress_tls_secret_name == "" ? [] : [1]
content {
secret_name = var.ingress_tls_secret_name
hosts = [var.ingress_host]
}
}
}
}