Add Helm chart

This commit is contained in:
Caleb Woodbine
2020-10-20 22:17:01 +13:00
parent 445910ca62
commit 8388e00386
13 changed files with 809 additions and 0 deletions

View File

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