Kokoro-FastAPI/charts/kokoro-fastapi/templates/tests/test-connection.yaml
Vincent Bailleau d4f248b3a2 Add Helm chart
2025-02-11 19:10:01 +01:00

15 lines
400 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.service.port }}']
restartPolicy: Never