Compare commits
3 Commits
6865b49259
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d77114c76 | |||
| 7813b62cc6 | |||
| 93ae5dd542 |
@ -3,5 +3,5 @@ apiVersion: v2
|
|||||||
name: wyoming-piper
|
name: wyoming-piper
|
||||||
description: Wyoming protocol server for the Piper text to speech system.
|
description: Wyoming protocol server for the Piper text to speech system.
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.3
|
version: 0.1.4
|
||||||
appVersion: '1.5.0'
|
appVersion: '1.5.0'
|
||||||
|
|||||||
@ -11,6 +11,7 @@ spec:
|
|||||||
- name: wyoming
|
- name: wyoming
|
||||||
port: {{ .Values.service.wyoming.port }}
|
port: {{ .Values.service.wyoming.port }}
|
||||||
targetPort: {{ .Values.service.wyoming.targetPort | default "10200" }}
|
targetPort: {{ .Values.service.wyoming.targetPort | default "10200" }}
|
||||||
|
nodePort: {{ .Values.service.wyoming.nodePort | default "10200" }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
selector:
|
selector:
|
||||||
{{- include "wyoming-piper.selectorLabels" . | nindent 4 }}
|
{{- include "wyoming-piper.selectorLabels" . | nindent 4 }}
|
||||||
|
|||||||
@ -41,6 +41,7 @@ service:
|
|||||||
wyoming:
|
wyoming:
|
||||||
port: 10200
|
port: 10200
|
||||||
targetPort: 10200
|
targetPort: 10200
|
||||||
|
nodePort: 10200
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
@ -79,7 +80,7 @@ livenessProbe:
|
|||||||
readinessProbe:
|
readinessProbe:
|
||||||
exec:
|
exec:
|
||||||
command:
|
command:
|
||||||
- /bin/sh
|
- /bin/bash
|
||||||
- -c
|
- -c
|
||||||
- >-
|
- >-
|
||||||
echo '{ "type": "describe" }' > /dev/tcp/localhost/10200
|
echo '{ "type": "describe" }' > /dev/tcp/localhost/10200
|
||||||
|
|||||||
Reference in New Issue
Block a user