From e3dc580044184e6f723a55d61b803ea383163546 Mon Sep 17 00:00:00 2001 From: JacekZubielik Date: Tue, 4 Jun 2024 20:41:22 +0200 Subject: [PATCH] build(bump): esphome version: 0.0.6 probes tcpSocket --- charts/esphome/Chart.yaml | 2 +- charts/esphome/templates/deployment.yaml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/charts/esphome/Chart.yaml b/charts/esphome/Chart.yaml index 527ef62..b2749d8 100644 --- a/charts/esphome/Chart.yaml +++ b/charts/esphome/Chart.yaml @@ -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 diff --git a/charts/esphome/templates/deployment.yaml b/charts/esphome/templates/deployment.yaml index d6696ef..3505571 100644 --- a/charts/esphome/templates/deployment.yaml +++ b/charts/esphome/templates/deployment.yaml @@ -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 }}