chart-syncthing_relay: add

This commit is contained in:
2024-11-04 17:10:24 +01:00
parent 422b16ce5d
commit d9351bdaea
10 changed files with 414 additions and 0 deletions

View File

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