feat: huge beszel hub and agent helm chart update (#1582)

This commit is contained in:
Daniel Nikoloski
2026-08-17 00:52:26 +02:00
committed by GitHub
parent ca5497324c
commit ec4ec01a39
32 changed files with 1859 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "beszel.fullname" . }}
labels:
{{- include "beszel.labels" . | nindent 4 }}
{{- if .Values.service.annotations }}
annotations:
{{ toYaml .Values.service.annotations | indent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
{{- if .Values.service.loadBalancerIP }}
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
{{- end }}
selector:
{{- include "beszel.selectorLabels" . | nindent 4 }}