This repository has been archived on 2024-07-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
chart/templates/tests/test-connection.yaml
Konstantin Grachev 48e01337c9
All checks were successful
continuous-integration/drone/push Build is passing
cs: fix
2023-03-17 17:00:07 +03:00

16 lines
363 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