From bd9ab59531ed0bfa323e3e40b61278961488c450 Mon Sep 17 00:00:00 2001 From: Sergey Shaykhullin <46970457+sergeyshaykhullin@users.noreply.github.com> Date: Tue, 8 Jun 2021 17:05:16 +0300 Subject: [PATCH] Increase timeout seconds (#1043) Signed-off-by: Sergey Shaykhullin --- charts/prometheus-adapter/Chart.yaml | 2 +- charts/prometheus-adapter/templates/deployment.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/prometheus-adapter/Chart.yaml b/charts/prometheus-adapter/Chart.yaml index 036cfddb..6fc91f17 100644 --- a/charts/prometheus-adapter/Chart.yaml +++ b/charts/prometheus-adapter/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: prometheus-adapter -version: 2.14.0 +version: 2.14.1 appVersion: v0.8.4 description: A Helm chart for k8s prometheus adapter home: https://github.com/DirectXMan12/k8s-prometheus-adapter diff --git a/charts/prometheus-adapter/templates/deployment.yaml b/charts/prometheus-adapter/templates/deployment.yaml index bfa02bc8..75060d94 100644 --- a/charts/prometheus-adapter/templates/deployment.yaml +++ b/charts/prometheus-adapter/templates/deployment.yaml @@ -67,12 +67,14 @@ spec: port: https scheme: HTTPS initialDelaySeconds: 30 + timeoutSeconds: 5 readinessProbe: httpGet: path: /healthz port: https scheme: HTTPS initialDelaySeconds: 30 + timeoutSeconds: 5 {{- if .Values.resources }} resources: {{- toYaml .Values.resources | nindent 10 }}