Skip to content

Commit 3151ed2

Browse files
committed
make the app's replicas setting optional
1 parent bfe9248 commit 3151ed2

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

heartex/label-studio/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.11.3
4+
- Make the app's replicas setting optional.
5+
36
## 1.11.2
47
- Running RQ workers with the scheduler component.
58

heartex/label-studio/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ home: https://labelstud.io/
55
type: application
66
icon: https://raw.githubusercontent.com/heartexlabs/label-studio/master/images/logo.png
77
# Chart version
8-
version: 1.11.2
8+
version: 1.11.3
99
# Label Studio release version
1010
appVersion: "1.20.0"
1111
kubeVersion: ">= 1.14.0-0"

heartex/label-studio/templates/app-deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ metadata:
1212
{{- toYaml .Values.app.labels | nindent 4 }}
1313
{{- end }}
1414
spec:
15+
{{- if .Values.app.replicas }}
1516
replicas: {{ .Values.app.replicas }}
17+
{{- end }}
1618
selector:
1719
matchLabels:
1820
{{- include "ls-app.selectorLabels" . | nindent 6 }}

0 commit comments

Comments
 (0)