Add Helm chart for Vikunja with templates, ignore files, and CI workflow

This commit is contained in:
2024-12-20 11:12:50 +00:00
commit 00b1f5eb97
13 changed files with 495 additions and 0 deletions

View File

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