Kokoro-FastAPI/charts/kokoro-fastapi/templates/tests/test-connection.yaml

16 lines
402 B
YAML
Raw Permalink Normal View History

2025-02-11 19:10:01 +01:00
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 }}']
2025-02-11 19:10:01 +01:00
restartPolicy: Never