Skip to content

Commit

Permalink
Merge pull request #40 from JacekZubielik/esphome
Browse files Browse the repository at this point in the history
build(bump): esphome version: 0.0.6
  • Loading branch information
JacekZubielik authored Jun 4, 2024
2 parents 9b9512e + e3dc580 commit 07652f0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/esphome/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v2
appVersion: 2024.5.4
description: ESPHome
name: esphome
version: 0.0.5
version: 0.0.6
keywords:
- esphome
type: application
Expand Down
16 changes: 8 additions & 8 deletions charts/esphome/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,32 +60,32 @@ spec:
{{- end }}
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /ping
tcpSocket:
# path: /ping
port: {{ .Values.service.httpPort }}
scheme: {{ .Values.livenessProbe.scheme }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
successThreshold: {{ .Values.livenessProbe.successThreshold }}
failureThreshold: {{ .Values.livenessProbe.failureThreshold }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds}}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
{{- end }}
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /ping
tcpSocket:
# path: /ping
port: {{ .Values.service.httpPort }}
scheme: {{ .Values.livenessProbe.scheme }}
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
successThreshold: {{ .Values.readinessProbe.successThreshold }}
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds}}
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
{{- end }}
{{- if .Values.startupProbe.enabled }}
startupProbe:
httpGet:
path: /ping
tcpSocket:
# path: /ping
port: {{ .Values.service.httpPort }}
scheme: {{ .Values.startupProbe.scheme }}
failureThreshold: {{ .Values.startupProbe.failureThreshold }}
Expand Down

0 comments on commit 07652f0

Please sign in to comment.