From 0b9e4e7e8715664ed305f68df7dcce4102ee0ff5 Mon Sep 17 00:00:00 2001 From: jessebot Date: Sun, 19 Jan 2025 11:44:02 +0100 Subject: [PATCH] add more comments for autoscaling --- charts/pixelfed/values.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/charts/pixelfed/values.yaml b/charts/pixelfed/values.yaml index 4b71500..613a5d6 100644 --- a/charts/pixelfed/values.yaml +++ b/charts/pixelfed/values.yaml @@ -116,12 +116,14 @@ readinessProbe: {} # path: /api/service/health-check # port: http -# This section is for setting up autoscaling -# more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/ autoscaling: + # -- enable autoscaling. more information can be found [here](https://kubernetes.io/docs/concepts/workloads/autoscaling/) enabled: false + # -- minimum replicas to always keep up minReplicas: 1 + # -- max replicas to scale up to maxReplicas: 100 + # -- CPU limit a pod needs to hit to start autoscaling new pods targetCPUUtilizationPercentage: 80 # targetMemoryUtilizationPercentage: 80