Compare commits

...

1 Commits

Author SHA1 Message Date
Victoria Reese
84d3570095 fix: make idleReplicaCount optional 2026-02-11 14:18:49 -06:00
10 changed files with 28 additions and 10 deletions

View File

@@ -5,7 +5,7 @@ home: https://www.onyx.app/
sources:
- "https://github.com/onyx-dot-app/onyx"
type: application
version: 0.4.26
version: 0.4.27
appVersion: latest
annotations:
category: Productivity

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.api.autoscaling.maxReplicas | default 10 }}
pollingInterval: {{ .Values.api.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.api.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.api.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.api.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.api.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.api.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.api.autoscaling.fallbackReplicas | default 1 }}

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.celery_worker_docfetching.autoscaling.maxReplicas | default 20 }}
pollingInterval: {{ .Values.celery_worker_docfetching.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.celery_worker_docfetching.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.celery_worker_docfetching.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.celery_worker_docfetching.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.celery_worker_docfetching.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.celery_worker_docfetching.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.celery_worker_docfetching.autoscaling.fallbackReplicas | default 1 }}

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.celery_worker_docprocessing.autoscaling.maxReplicas | default 10 }}
pollingInterval: {{ .Values.celery_worker_docprocessing.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.celery_worker_docprocessing.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.celery_worker_docprocessing.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.celery_worker_docprocessing.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.celery_worker_docprocessing.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.celery_worker_docprocessing.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.celery_worker_docprocessing.autoscaling.fallbackReplicas | default 1 }}

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.celery_worker_heavy.autoscaling.maxReplicas | default 10 }}
pollingInterval: {{ .Values.celery_worker_heavy.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.celery_worker_heavy.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.celery_worker_heavy.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.celery_worker_heavy.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.celery_worker_heavy.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.celery_worker_heavy.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.celery_worker_heavy.autoscaling.fallbackReplicas | default 1 }}

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.celery_worker_light.autoscaling.maxReplicas | default 10 }}
pollingInterval: {{ .Values.celery_worker_light.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.celery_worker_light.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.celery_worker_light.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.celery_worker_light.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.celery_worker_light.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.celery_worker_light.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.celery_worker_light.autoscaling.fallbackReplicas | default 1 }}

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.celery_worker_monitoring.autoscaling.maxReplicas | default 10 }}
pollingInterval: {{ .Values.celery_worker_monitoring.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.celery_worker_monitoring.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.celery_worker_monitoring.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.celery_worker_monitoring.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.celery_worker_monitoring.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.celery_worker_monitoring.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.celery_worker_monitoring.autoscaling.fallbackReplicas | default 1 }}

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.celery_worker_primary.autoscaling.maxReplicas | default 10 }}
pollingInterval: {{ .Values.celery_worker_primary.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.celery_worker_primary.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.celery_worker_primary.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.celery_worker_primary.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.celery_worker_primary.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.celery_worker_primary.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.celery_worker_primary.autoscaling.fallbackReplicas | default 1 }}

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.celery_worker_user_file_processing.autoscaling.maxReplicas | default 10 }}
pollingInterval: {{ .Values.celery_worker_user_file_processing.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.celery_worker_user_file_processing.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.celery_worker_user_file_processing.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.celery_worker_user_file_processing.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.celery_worker_user_file_processing.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.celery_worker_user_file_processing.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.celery_worker_user_file_processing.autoscaling.fallbackReplicas | default 1 }}

View File

@@ -14,7 +14,9 @@ spec:
maxReplicaCount: {{ .Values.webserver.autoscaling.maxReplicas }}
pollingInterval: {{ .Values.webserver.autoscaling.pollingInterval | default 30 }}
cooldownPeriod: {{ .Values.webserver.autoscaling.cooldownPeriod | default 300 }}
idleReplicaCount: {{ .Values.webserver.autoscaling.idleReplicaCount | default 1 }}
{{- if hasKey .Values.webserver.autoscaling "idleReplicaCount" }}
idleReplicaCount: {{ .Values.webserver.autoscaling.idleReplicaCount }}
{{- end }}
fallback:
failureThreshold: {{ .Values.webserver.autoscaling.failureThreshold | default 3 }}
replicas: {{ .Values.webserver.autoscaling.fallbackReplicas | default 1 }}