feat: add timemachine Helm chart with deployment, service, and persistence configurations

This commit is contained in:
sha
2026-04-26 17:11:54 +03:00
parent e1fef2b8ad
commit b72a820d7a
6 changed files with 311 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{{- if .Values.service.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "timemachine.fullname" . }}
labels:
{{- include "timemachine.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
selector:
{{- include "timemachine.selectorLabels" . | nindent 4 }}
ports:
- name: smb
port: {{ .Values.service.smbPort }}
targetPort: smb
protocol: TCP
- name: netbios-ssn
port: 139
targetPort: netbios-ssn
protocol: TCP
- name: netbios-ns
port: 137
targetPort: netbios-ns
protocol: UDP
- name: netbios-dgm
port: 138
targetPort: netbios-dgm
protocol: UDP
{{- end }}