initial
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-02-28 20:47:48 +03:00
commit 1b29710513
14 changed files with 689 additions and 0 deletions

15
templates/service.yaml Normal file
View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "hedgedoc.fullname" . }}
labels:
{{- include "hedgedoc.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "hedgedoc.selectorLabels" . | nindent 4 }}