ungleich-k8s/apps/netbox/templates/tests/test-connection.yaml
2021-10-21 08:38:40 +02:00

15 lines
376 B
YAML

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