-
Notifications
You must be signed in to change notification settings - Fork 1
/
frontend.tf
105 lines (89 loc) · 2.13 KB
/
frontend.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
resource "kubernetes_deployment" "gits_frontend" {
metadata {
name = "gits-frontend"
labels = {
app = "gits-frontend"
}
namespace = kubernetes_namespace.gits.metadata[0].name
annotations = {
"keel.sh/policy" = "force"
"keel.sh/match-tag" = "true"
"keel.sh/trigger" = "poll"
}
}
spec {
replicas = 1
selector {
match_labels = {
app = "gits-frontend"
}
}
template {
metadata {
labels = {
app = "gits-frontend"
}
}
spec {
image_pull_secrets {
name = kubernetes_secret.image_pull.metadata[0].name
}
container {
image = "ghcr.io/it-rex-platform/frontend:latest"
image_pull_policy = "Always"
name = "gits-frontend"
resources {
limits = {
cpu = "0.5"
memory = "512Mi"
}
requests = {
cpu = "50m"
memory = "50Mi"
}
}
env {
name = "NEXT_PUBLIC_BACKEND_URL"
value = "/api"
}
env {
name = "NEXT_PUBLIC_OAUTH_REDIRECT_URL"
value = "http://orange.informatik.uni-stuttgart.de"
}
env {
name = "NEXT_PUBLIC_OAUTH_CLIENT_ID"
value = "gits-frontend"
}
env {
name = "NEXT_PUBLIC_OAUTH_AUTHORITY"
value = "http://orange.informatik.uni-stuttgart.de/keycloak/realms/GITS"
}
liveness_probe {
http_get {
path = "/"
port = 3000
}
initial_delay_seconds = 9
period_seconds = 9
}
}
}
}
}
}
resource "kubernetes_service" "gits_frontend" {
metadata {
name = "gits-frontend"
namespace = kubernetes_namespace.gits.metadata[0].name
}
spec {
selector = {
app = kubernetes_deployment.gits_frontend.metadata[0].labels.app
}
port {
port = 80
target_port = 3000
}
type = "NodePort"
}
}