Kokoro-FastAPI/charts/kokoro-fastapi/templates/tests/test-connection.yaml
2025-03-21 22:05:25 -06:00

15 lines
402 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "kokoro-fastapi.fullname" . }}-test-connection"
labels:
{{- include "kokoro-fastapi.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "kokoro-fastapi.fullname" . }}:{{ .Values.kokoroTTS.port }}']
restartPolicy: Never