-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.tf
66 lines (60 loc) · 1.09 KB
/
deploy.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
resource "kubernetes_deployment" "apache" {
metadata {
name = "apache-httpd"
labels = {
app = "apache-httpd"
}
}
spec {
replicas = 1
selector {
match_labels = {
app = "apache-httpd"
}
}
template {
metadata {
labels = {
app = "apache-httpd"
}
}
spec {
container {
image = "httpd"
name = "apache-httpd"
resources {
limits = {
cpu = "0.5"
memory = "200Mi"
}
requests = {
cpu = "250m"
memory = "100Mi"
}
}
}
}
}
}
}
resource "kubernetes_service" "apache" {
wait_for_load_balancer = true
metadata {
name = "apache-httpd"
}
spec {
selector = {
app = "apache-httpd"
}
port {
port = 80
target_port = 80
}
type = "LoadBalancer"
}
}
resource "helm_release" "wordpress" {
name = "wordpress"
repository = "https://charts.bitnami.com/bitnami"
chart = "wordpress"
}