File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.11.5
4+ - Loosen the readiness check thresholds in the app to support smaller environments.
5+
36## 1.11.3
47- Fixed to make it possible to set app's replicas to 0 again.
58
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ home: https://labelstud.io/
55type : application
66icon : https://raw.githubusercontent.com/heartexlabs/label-studio/master/images/logo.png
77# Chart version
8- version : 1.11.4
8+ version : 1.11.5
99# Label Studio release version
1010appVersion : " 1.20.0"
1111kubeVersion : " >= 1.14.0-0"
Original file line number Diff line number Diff line change @@ -241,15 +241,15 @@ app:
241241 port : 8000
242242 scheme : HTTP
243243 # When a probe fails, Kubernetes will try failureThreshold times before giving up
244- failureThreshold : 1
244+ failureThreshold : 3
245245 # Number of seconds after the container has started before probe initiates
246246 initialDelaySeconds : 60
247247 # How often (in seconds) to perform the probe
248248 periodSeconds : 5
249249 # Minimum consecutive successes for the probe to be considered successful after having failed
250250 successThreshold : 1
251251 # Number of seconds after which the probe times out.
252- timeoutSeconds : 1
252+ timeoutSeconds : 3
253253 # Used to enable a livenessProbe for the pods
254254 livenessProbe :
255255 enabled : true
You can’t perform that action at this time.
0 commit comments