feat: Add official Helm Chart (#442)

Closes #192
This commit is contained in:
Christopher Greaves
2023-05-25 16:23:11 +01:00
committed by GitHub
parent 0d481703da
commit 932d8225ed
16 changed files with 630 additions and 0 deletions

View File

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