Add simple helm chart

This commit is contained in:
phk-nord 2024-04-24 14:47:58 +02:00
parent 91f214819a
commit 0938675fc2
No known key found for this signature in database
GPG key ID: 1277CF175F6918C5
15 changed files with 909 additions and 0 deletions

View file

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