chart-wyoming_piper: add proper probes
This commit is contained in:
@ -3,5 +3,5 @@ apiVersion: v2
|
||||
name: wyoming-piper
|
||||
description: Wyoming protocol server for the Piper text to speech system.
|
||||
type: application
|
||||
version: 0.1.1
|
||||
version: 0.1.2
|
||||
appVersion: '1.5.0'
|
||||
|
||||
@ -70,14 +70,24 @@ resources: {}
|
||||
# memory: 128Mi
|
||||
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: http
|
||||
tcpSocket:
|
||||
port: 10200
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 5
|
||||
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: http
|
||||
exec:
|
||||
command:
|
||||
- /bin/sh
|
||||
- -c
|
||||
- >-
|
||||
echo '{ "type": "describe" }' | nc localhost 10200
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 5
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
|
||||
autoscaling:
|
||||
enabled: false
|
||||
|
||||
Reference in New Issue
Block a user