From ad3c500ed0eb2211d06b66a60b5a69ad974ec7e7 Mon Sep 17 00:00:00 2001 From: Philip Miglinci Date: Thu, 16 Nov 2023 11:52:35 +0100 Subject: [PATCH] chore(Nextcloud): increase default resources Signed-off-by: Philip Miglinci --- .../eu/glasskube/operator/apps/nextcloud/NextcloudSpec.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/operator/src/main/kotlin/eu/glasskube/operator/apps/nextcloud/NextcloudSpec.kt b/operator/src/main/kotlin/eu/glasskube/operator/apps/nextcloud/NextcloudSpec.kt index ce0840bc..51002089 100644 --- a/operator/src/main/kotlin/eu/glasskube/operator/apps/nextcloud/NextcloudSpec.kt +++ b/operator/src/main/kotlin/eu/glasskube/operator/apps/nextcloud/NextcloudSpec.kt @@ -35,10 +35,10 @@ data class NextcloudSpec( @field:Nullable val resources: ResourceRequirements = ResourceRequirements( null, - mapOf("memory" to Quantity("600", "Mi")), - mapOf("memory" to Quantity("300", "Mi")) + mapOf("memory" to Quantity("1800", "Mi")), + mapOf("memory" to Quantity("900", "Mi")) ), - val maxChildren: Int = 256, + val maxChildren: Int = 512, val startServers: Int = maxChildren / 8, val minSpareServers: Int = maxChildren / 16, val maxSpareServers: Int = maxChildren / 4