Commit 13ba6413 authored by Danny's avatar Danny

add memory resource to deployment

parent f7260c5d
......@@ -64,10 +64,15 @@ resource "kubernetes_deployment" "aws_cluster_autoscaler_deployment" {
read_only = true
}
liveness_probe {
http_get {
path = "/health"
port = 8085
resources {
limits {
cpu = "100m"
memory = "300Mi"
}
requests {
cpu = "100m"
memory = "300Mi"
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment