init
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
2022-11-15 21:04:45 +03:00
commit fd88e26462
19 changed files with 874 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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