Compare commits

..

3 Commits

Author SHA1 Message Date
5d77114c76 chart-wyoming_piper: bump version 2025-04-21 15:26:51 +02:00
7813b62cc6 chart-wyoming_piper: add optional nodeport config 2025-04-21 15:26:31 +02:00
93ae5dd542 chart-wyoming_piper: fix probe shell 2025-04-21 15:25:49 +02:00
3 changed files with 4 additions and 2 deletions

View File

@ -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'

View File

@ -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 }}

View File

@ -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