Skip to content

Commit 3d0999c

Browse files
authored
Merge pull request #27 from stackhpc/feat/api-replicas
Expose backend replicas option in chart values
2 parents c2f08b7 + bc8b7df commit 3d0999c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

chart/templates/api/deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
labels:
66
{{- include "azimuth-llm.labels" . | nindent 4 }}
77
spec:
8-
replicas: 1
8+
replicas: {{ .Values.api.replicas }}
99
selector:
1010
matchLabels:
1111
{{- include "azimuth-llm.api-selectorLabels" . | nindent 6 }}

chart/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ api:
3838
version: v0.4.2
3939
monitoring:
4040
enabled: true
41+
# The number of replicas for the backend deployment
42+
replicas: 1
4143
# Service config
4244
service:
4345
name: llm-backend

0 commit comments

Comments
 (0)