frp/helm/frps/templates/tests/test-connection.yaml
2025-01-08 20:53:00 -05:00

16 lines
370 B
YAML

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