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" { ...@@ -64,10 +64,15 @@ resource "kubernetes_deployment" "aws_cluster_autoscaler_deployment" {
read_only = true read_only = true
} }
liveness_probe { resources {
http_get { limits {
path = "/health" cpu = "100m"
port = 8085 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