This repository was archived by the owner on Mar 14, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,11 +89,11 @@ spec:
8989 {{- end }}{{/* end check for env vars for home asisstant container */}}
9090 {{- if .Values.livenessProbe.enabled }}
9191 livenessProbe :
92- {{- toYaml .Values.livenessProbe | nindent 12 }}
92+ {{- toYaml (omit .Values.livenessProbe "enabled") | nindent 12 }}
9393 {{- end }}
9494 {{- if .Values.readinessProbe.enabled }}
9595 readinessProbe :
96- {{- toYaml .Values.readinessProbe | nindent 12 }}
96+ {{- toYaml (omit .Values.readinessProbe "enabled") | nindent 12 }}
9797 {{- end }}
9898 {{- with .Values.resources }}
9999 resources :
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ metadata:
44 name : {{ include "home-assistant.fullname" . }}
55 labels :
66 {{- include "home-assistant.labels" . | nindent 4 }}
7+ {{- with .Values.service.annotations }}
8+ annotations :
9+ {{- toYaml . | nindent 4 }}
10+ {{- end }}
711spec :
812 type : {{ .Values.service.type }}
913 ports :
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ securityContext: {}
4545 # runAsUser: 1000
4646
4747service :
48+ annotations : {}
4849 type : ClusterIP
4950 # -- default port to expose
5051 port : 80
You can’t perform that action at this time.
0 commit comments