feat: setup initial helm chart

This commit is contained in:
Jonathan Irvin
2024-09-10 10:58:11 -05:00
parent 1fbdc185db
commit 61cb199c75
9 changed files with 380 additions and 0 deletions
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "postiz.fullname" . }}
labels:
{{- include "postiz.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "postiz.selectorLabels" . | nindent 4 }}