Skip to content

Commit 227599a

Browse files
authored
[teleport-ent-auth] Increase failure timeout length
1 parent 62e715d commit 227599a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

incubator/teleport-ent-auth/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "3.1.8"
33
description: A Helm chart for Teleport Auth service
44
name: teleport-ent-auth
5-
version: 0.1.0
5+
version: 0.1.1

incubator/teleport-ent-auth/templates/deployment.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,16 @@ spec:
6767
httpGet:
6868
path: /healthz
6969
port: {{ .Values.diagnostics.port | default 3000 }}
70-
initialDelaySeconds: 30
70+
initialDelaySeconds: 70
7171
timeoutSeconds: 3
72+
failureThreshold: 3
7273
readinessProbe:
7374
httpGet:
7475
path: /readyz
7576
port: {{ .Values.diagnostics.port | default 3000 }}
7677
initialDelaySeconds: 30
7778
timeoutSeconds: 3
79+
failureThreshold: 5
7880
{{- end }}
7981
resources:
8082
{{ toYaml .Values.resources | indent 10 }}

incubator/teleport-ent-auth/values.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ bootstrap:
5757
## Script used to install resources when auth service is launched
5858
script: |-
5959
#!/bin/bash
60-
set -e -o pipefail
6160
# Log script output to /var/log/
6261
exec > >(tee -ia /var/log/teleport-bootstrap.log)
6362
exec 2> >(tee -ia /var/log/teleport-bootstrap.log >&2)

0 commit comments

Comments
 (0)