Skip to content

Commit

Permalink
fix(app): missing field in iap sidecar (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
mabdh authored Oct 22, 2023
1 parent eb15034 commit 1f411e6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stable/app/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@ spec:
readinessProbe:
tcpSocket:
port: {{ .Values.iap.containerPort }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
initialDelaySeconds: {{ .Values.iap.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.iap.livenessProbe.timeoutSeconds }}
livenessProbe:
tcpSocket:
port: {{ .Values.iap.containerPort }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
initialDelaySeconds: {{ .Values.iap.livenessProbe.initialDelaySeconds }}
timeoutSeconds: {{ .Values.iap.livenessProbe.timeoutSeconds }}
env:
- name: REFRESH_TIME_SECONDS
value: {{ .Values.iap.refreshTimeSeconds }}
Expand Down
6 changes: 6 additions & 0 deletions stable/app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,9 @@ iap:
serviceAccountFileName: sa.json
serviceAccountSecret: iap-credentials-secret
logLevel: error
readinessProbe:
initialDelaySeconds: 0
timeoutSeconds: 5
livenessProbe:
initialDelaySeconds: 0
timeoutSeconds: 5

0 comments on commit 1f411e6

Please sign in to comment.