initial
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-02-28 20:47:48 +03:00
commit 1b29710513
14 changed files with 689 additions and 0 deletions

View File

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