Initial Commit

This commit is contained in:
2022-10-16 12:12:35 +02:00
commit 62be1ab2c1
14 changed files with 684 additions and 0 deletions

19
templates/service.yaml Normal file
View File

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