Skip to content

Commit

Permalink
Adding port 8888 to Deployment (#302)
Browse files Browse the repository at this point in the history
* Adding port 8888 to Deployment

Signed-off-by: Aaron Layfield <[email protected]>

* 4.29.3

Signed-off-by: Aaron Layfield <[email protected]>

---------

Signed-off-by: Aaron Layfield <[email protected]>
  • Loading branch information
DandyDeveloper authored Nov 7, 2024
1 parent 38d51f3 commit 3d04195
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/redis-ha/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ keywords:
- redis
- keyvalue
- database
version: 4.29.2
version: 4.29.3
appVersion: 7.2.4
description: This Helm chart provides a highly available Redis implementation with a master/slave configuration and uses Sentinel sidecars for failover management
icon: https://upload.wikimedia.org/wikipedia/en/thumb/6/6b/Redis_Logo.svg/1200px-Redis_Logo.svg.png
Expand Down
6 changes: 4 additions & 2 deletions charts/redis-ha/templates/redis-haproxy-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,16 +146,18 @@ spec:
livenessProbe:
httpGet:
path: /healthz
port: 8888
port: probe
initialDelaySeconds: 5
periodSeconds: 3
readinessProbe:
httpGet:
path: /healthz
port: 8888
port: probe
initialDelaySeconds: 5
periodSeconds: 3
ports:
- name: probe
containerPort: 8888
- name: redis
containerPort: {{ default "6379" .Values.haproxy.containerPort }}
{{- if .Values.haproxy.readOnly.enabled }}
Expand Down

0 comments on commit 3d04195

Please sign in to comment.