notion2ical/helm/templates/tests/test-connection.yaml

16 lines
391 B
YAML

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