Skip to content
Snippets Groups Projects
Commit e0a8d16f authored by Edward Hicks's avatar Edward Hicks :8ball:
Browse files

disabled readiness check for now until we figure out how to use it

properly
parent 577735c1
No related branches found
No related tags found
No related merge requests found
apiVersion: v1
name: osuredis
version: 1.1.2
version: 1.1.3
description: "Helm chart for deploying one of the OCIO Middleware's standard Redis instances"
keywords:
- "redis"
......
......@@ -79,33 +79,33 @@ spec:
- name: "persistent-data"
mountPath: "/data"
livenessProbe:
initialDelaySeconds: 10
initialDelaySeconds: 60
periodSeconds: 60
timeoutSeconds: 10
failureThreshold: 3
tcpSocket:
port: 6379
readinessProbe:
initialDelaySeconds: 10
periodSeconds: 60
timeoutSeconds: 10
exec:
command:
- "redis-cli"
- "-a"
- "{{.Values.app.password}}"
- "PING"
- "|"
- "tr"
- "-d"
- "[:space:]"
- "|"
- "xargs"
- "-n1"
- "-r"
- "test"
- "PONG"
- "="
# readinessProbe:
# initialDelaySeconds: 120
# periodSeconds: 60
# timeoutSeconds: 10
# exec:
# command:
# - "redis-cli"
# - "-a"
# - "{{.Values.app.password}}"
# - "PING"
# - "|"
# - "tr"
# - "-d"
# - "[:space:]"
# - "|"
# - "xargs"
# - "-n1"
# - "-r"
# - "test"
# - "PONG"
# - "="
resources:
{{- toYaml .Values.redis.resources | nindent 10 }}
- name: "sentinel"
......@@ -122,33 +122,33 @@ spec:
- name: "persistent-data"
mountPath: "/data"
livenessProbe:
initialDelaySeconds: 10
initialDelaySeconds: 60
periodSeconds: 60
timeoutSeconds: 10
failureThreshold: 3
tcpSocket:
port: 26379
readinessProbe:
initialDelaySeconds: 10
periodSeconds: 60
timeoutSeconds: 10
exec:
command:
- "redis-cli"
- "-p"
- "26379"
- "PING"
- "|"
- "tr"
- "-d"
- "[:space:]"
- "|"
- "xargs"
- "-n1"
- "-r"
- "test"
- "PONG"
- "="
# readinessProbe:
# initialDelaySeconds: 120
# periodSeconds: 60
# timeoutSeconds: 10
# exec:
# command:
# - "redis-cli"
# - "-p"
# - "26379"
# - "PING"
# - "|"
# - "tr"
# - "-d"
# - "[:space:]"
# - "|"
# - "xargs"
# - "-n1"
# - "-r"
# - "test"
# - "PONG"
# - "="
resources:
{{- toYaml .Values.sentinel.resources | nindent 10 }}
{{- with .Values.nodeSelector }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment