Skip to content

Commit 17265be

Browse files
committed
Fixed to make it possible to set app's replicas to 0 again
1 parent 3151ed2 commit 17265be

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
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+
- Fixed to make it possible to set app's replicas to 0 again.
5+
36
## 1.11.3
47
- Make the app's replicas setting optional.
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.3
8+
version: 1.11.4
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
{{- toYaml .Values.app.labels | nindent 4 }}
1313
{{- end }}
1414
spec:
15-
{{- if .Values.app.replicas }}
15+
{{- if ne .Values.app.replicas nil }}
1616
replicas: {{ .Values.app.replicas }}
1717
{{- end }}
1818
selector:

0 commit comments

Comments
 (0)