diff --git a/chart/README.md b/chart/README.md index def6b8510..9738a5974 100644 --- a/chart/README.md +++ b/chart/README.md @@ -22,6 +22,7 @@ A fun, new, open way to experience social media https://iceshrimp.dev | autoscaling.minReplicas | int | `1` | | | autoscaling.targetCPUUtilizationPercentage | int | `80` | | | iceshrimp.allowedPrivateNetworks | list | `[]` | If you want to allow iceshrimp to connect to private ips, enter the cidrs here. | +| iceshrimp.clusterLimit | integer | `1` | Number of worker processes per replica | | iceshrimp.deepl.authKey | string | `""` | | | iceshrimp.deepl.isPro | bool | `false` | | | iceshrimp.deepl.managed | bool | `false` | | diff --git a/chart/templates/_helpers.tpl b/chart/templates/_helpers.tpl index 389da29e9..7b7d35734 100644 --- a/chart/templates/_helpers.tpl +++ b/chart/templates/_helpers.tpl @@ -223,7 +223,7 @@ reservedUsernames: {{ .Values.iceshrimp.reservedUsernames | toJson }} #disableHsts: true # Number of worker processes -#clusterLimit: 1 +clusterLimit: {{ .Values.iceshrimp.clusterLimit | default 1 }} # Job concurrency per worker # deliverJobConcurrency: 128 diff --git a/chart/values.yaml b/chart/values.yaml index c4e2a5842..c705d3ee3 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -65,6 +65,9 @@ iceshrimp: - me - system + # Number of worker processes per replica + clusterLimit: 1 + # https://github.com/bitnami/charts/tree/master/bitnami/postgresql#parameters postgresql: # -- disable if you want to use an existing db; in which case the values below