Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tempo-distributed] add readiness probe for memcached #3522

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions charts/tempo-distributed/README.md
Original file line number Diff line number Diff line change
@@ -613,6 +613,7 @@ The memcached default args are removed and should be provided manually. The sett
| memcached.maxUnavailable | int | `1` | Pod Disruption Budget maxUnavailable |
| memcached.podAnnotations | object | `{}` | Annotations for memcached pods |
| memcached.podLabels | object | `{}` | Labels for memcached pods |
| memcached.readinessProbe | object | `{"initialDelaySeconds":5,"tcpSocket":{"port":"client"},"timeoutSeconds":1}` | Configures readinessProbe for memcached |
| memcached.replicas | int | `1` | |
| memcached.resources | object | `{}` | Resource requests and limits for memcached |
| memcached.service.annotations | object | `{}` | Annotations for memcached service |
Original file line number Diff line number Diff line change
@@ -75,6 +75,8 @@ spec:
envFrom:
{{- toYaml . | nindent 12 }}
{{- end }}
readinessProbe:
{{- toYaml .Values.memcached.readinessProbe | nindent 12 }}
resources:
{{- toYaml .Values.memcached.resources | nindent 12 }}
{{- with .Values.tempo.securityContext }}
6 changes: 6 additions & 0 deletions charts/tempo-distributed/values.yaml
Original file line number Diff line number Diff line change
@@ -1600,6 +1600,12 @@ memcached:
# -- Memcached Docker image pull policy
pullPolicy: IfNotPresent
host: memcached
# -- Configures readinessProbe for memcached
readinessProbe:
initialDelaySeconds: 5
tcpSocket:
port: client
timeoutSeconds: 1
# Number of replicas for memchached
replicas: 1
# -- Additional CLI args for memcached