[ci skip] rybbit: increase clickhouse memory limit to fix OOMKilled crash loop
This commit is contained in:
parent
ef158ed431
commit
9caec43351
1 changed files with 10 additions and 0 deletions
|
|
@ -77,6 +77,16 @@ resource "kubernetes_deployment" "clickhouse" {
|
||||||
name = "data"
|
name = "data"
|
||||||
mount_path = "/var/lib/clickhouse"
|
mount_path = "/var/lib/clickhouse"
|
||||||
}
|
}
|
||||||
|
resources {
|
||||||
|
requests = {
|
||||||
|
cpu = "100m"
|
||||||
|
memory = "512Mi"
|
||||||
|
}
|
||||||
|
limits = {
|
||||||
|
cpu = "2"
|
||||||
|
memory = "4Gi"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
volume {
|
volume {
|
||||||
name = "data"
|
name = "data"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue