Skip to content

Commit

Permalink
Merge branch 'master' into testing-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandroEsc authored Feb 25, 2020
2 parents d05ae45 + 5caf708 commit dcf0afd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion staging/dex-k8s-authenticator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "v1.1.1"
description: "Authenticator for using Dex with Kubernetes"
name: dex-k8s-authenticator
version: 1.1.13
version: 1.1.14
home: https://github.com/mesosphere/charts
sources:
- https://github.com/mintel/dex-k8s-authenticator
Expand Down
4 changes: 4 additions & 0 deletions staging/dex-k8s-authenticator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,16 @@ spec:
containerPort: {{ default "5555" .Values.dexK8sAuthenticator.port }}
protocol: TCP
livenessProbe:
failureThreshold: {{ .Values.dexK8sAuthenticator.livenessProbe.failureThreshold }}
timeoutSeconds: {{ .Values.dexK8sAuthenticator.livenessProbe.timeoutSeconds }}
periodSeconds: {{ .Values.dexK8sAuthenticator.livenessProbe.periodSeconds }}
initialDelaySeconds: {{ .Values.dexK8sAuthenticator.livenessProbe.initialDelaySeconds }}
httpGet:
path: {{ template "dex-k8s-authenticator.healthCheckPath" . }}
port: http
readinessProbe:
failureThreshold: {{ .Values.dexK8sAuthenticator.readinessProbe.failureThreshold }}
timeoutSeconds: {{ .Values.dexK8sAuthenticator.readinessProbe.timeoutSeconds }}
periodSeconds: {{ .Values.dexK8sAuthenticator.readinessProbe.periodSeconds }}
initialDelaySeconds: {{ .Values.dexK8sAuthenticator.readinessProbe.initialDelaySeconds }}
httpGet:
Expand Down
12 changes: 8 additions & 4 deletions staging/dex-k8s-authenticator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ dexK8sAuthenticator:
port: 5555
debug: false
livenessProbe:
periodSeconds: 10
initialDelaySeconds: 10
failureThreshold: 3 # Under high load use 'failureThreshold: 6'
periodSeconds: 10 # Under high load use 'periodSeconds: 30'
initialDelaySeconds: 10 # Under high load use 'initialDelaySeconds: 15'
timeoutSeconds: 10 # Under high load use 'timeoutSeconds: 30'
readinessProbe:
periodSeconds: 10
initialDelaySeconds: 10
failureThreshold: 3
periodSeconds: 10 # Under high load use 'periodSeconds: 30'
initialDelaySeconds: 10 # Under high load use 'initialDelaySeconds: 15'
timeoutSeconds: 10 # Under high load use 'timeoutSeconds: 30'
web_path_prefix: /
# logoUrl: http://<path-to-your-logo.png>
# tlsCert: /path/to/dex-client.crt
Expand Down

0 comments on commit dcf0afd

Please sign in to comment.