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