Skip to content

Commit

Permalink
Rename Redis manifest file and add Kubernetes probes
Browse files Browse the repository at this point in the history
  • Loading branch information
dsgnr committed Sep 29, 2021
1 parent d0fb3ce commit 29689b6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.

## Unreleased

- Rename Redis manifest file and add Kubernetes probes
- Ensure the form captures errors better
- Make the form submit on return key press
- Increase the check time on front-end and API Kubernetes deployments
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,18 @@ spec:
containers:
- name: {{ .Values.service.redis.name }}
image: "{{ .Values.service.redis.image }}"
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
livenessProbe:
exec:
command:
- redis-cli
- ping
initialDelaySeconds: 30
timeoutSeconds: 5
readinessProbe:
exec:
command:
- redis-cli
- ping
initialDelaySeconds: 10
timeoutSeconds: 5

0 comments on commit 29689b6

Please sign in to comment.