File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
deployment/helm/charts/onyx/templates Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 9
9
scaleTargetRef :
10
10
apiVersion : apps/v1
11
11
kind : Deployment
12
- name : {{ include "onyx-stack.fullname" . }}
13
- minReplicaCount : {{ .Values.api.autoscaling.minReplicas }}
14
- maxReplicaCount : {{ .Values.api.autoscaling.maxReplicas }}
12
+ name : {{ include "onyx-stack.fullname" . }}-api-server
13
+ minReplicaCount : {{ .Values.api.autoscaling.minReplicas | default 1 }}
14
+ maxReplicaCount : {{ .Values.api.autoscaling.maxReplicas | default 10 }}
15
15
pollingInterval : {{ .Values.api.autoscaling.pollingInterval | default 30 }}
16
16
cooldownPeriod : {{ .Values.api.autoscaling.cooldownPeriod | default 300 }}
17
17
idleReplicaCount : {{ .Values.api.autoscaling.idleReplicaCount | default 1 }}
Original file line number Diff line number Diff line change 11
11
kind : Deployment
12
12
name : {{ include "onyx-stack.fullname" . }}-celery-worker-docfetching
13
13
minReplicaCount : {{ .Values.celery_worker_docfetching.autoscaling.minReplicas | default 1 }}
14
- maxReplicaCount : {{ .Values.celery_worker_docfetching.autoscaling.maxReplicas | default 10 }}
14
+ maxReplicaCount : {{ .Values.celery_worker_docfetching.autoscaling.maxReplicas | default 20 }}
15
15
pollingInterval : {{ .Values.celery_worker_docfetching.autoscaling.pollingInterval | default 30 }}
16
16
cooldownPeriod : {{ .Values.celery_worker_docfetching.autoscaling.cooldownPeriod | default 300 }}
17
17
idleReplicaCount : {{ .Values.celery_worker_docfetching.autoscaling.idleReplicaCount | default 1 }}
Original file line number Diff line number Diff line change 2
2
apiVersion : keda.sh/v1alpha1
3
3
kind : ScaledObject
4
4
metadata :
5
- name : {{ include "onyx-stack.fullname" . }}-webserver
5
+ name : {{ include "onyx-stack.fullname" . }}-web-server
6
6
labels :
7
7
{{- include "onyx-stack.labels" . | nindent 4 }}
8
8
spec :
9
9
scaleTargetRef :
10
10
apiVersion : apps/v1
11
11
kind : Deployment
12
- name : {{ include "onyx-stack.fullname" . }}
12
+ name : {{ include "onyx-stack.fullname" . }}-web-server
13
13
minReplicaCount : {{ .Values.webserver.autoscaling.minReplicas }}
14
14
maxReplicaCount : {{ .Values.webserver.autoscaling.maxReplicas }}
15
15
pollingInterval : {{ .Values.webserver.autoscaling.pollingInterval | default 30 }}
You can’t perform that action at this time.
0 commit comments