feat: focalboard chart (#18)

This commit is contained in:
2023-05-25 13:45:37 +01:00
committed by GitHub
parent 84df69e04f
commit 874800bc2c
14 changed files with 526 additions and 0 deletions

View File

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