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

16 lines
391 B
YAML
Raw Normal View History

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