File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed
docs/sources/setup/install/helm Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -6759,6 +6759,23 @@ false
6759
6759
<td><pre lang="json">
6760
6760
null
6761
6761
</pre >
6762
+ </td >
6763
+ </tr>
6764
+ <tr>
6765
+ <td>memcached.readinessProbe</td>
6766
+ <td>object</td>
6767
+ <td>Readiness probe</td>
6768
+ <td><pre lang="json">
6769
+ {
6770
+ "failureThreshold": 6,
6771
+ "initialDelaySeconds": 5,
6772
+ "periodSeconds": 5,
6773
+ "tcpSocket": {
6774
+ "port": 11211
6775
+ },
6776
+ "timeoutSeconds": 3
6777
+ }
6778
+ </pre >
6762
6779
</td >
6763
6780
</tr>
6764
6781
<tr>
Original file line number Diff line number Diff line change @@ -124,6 +124,8 @@ spec:
124
124
{ {- end } }
125
125
securityContext:
126
126
{ {- toYaml $.ctx.Values.memcached.containerSecurityContext | nindent 12 } }
127
+ readinessProbe:
128
+ { {- toYaml $.ctx.Values.memcached.readinessProbe | nindent 12 } }
127
129
{ {- if or .persistence.enabled .extraVolumeMounts } }
128
130
volumeMounts:
129
131
{ {- if .persistence.enabled } }
Original file line number Diff line number Diff line change @@ -3032,6 +3032,14 @@ memcached:
3032
3032
fsGroup : 11211
3033
3033
# -- The name of the PriorityClass for memcached pods
3034
3034
priorityClassName : null
3035
+ # -- Readiness probe
3036
+ readinessProbe :
3037
+ tcpSocket :
3038
+ port : 11211
3039
+ initialDelaySeconds : 5
3040
+ periodSeconds : 5
3041
+ timeoutSeconds : 3
3042
+ failureThreshold : 6
3035
3043
# -- The SecurityContext for memcached containers
3036
3044
containerSecurityContext :
3037
3045
readOnlyRootFilesystem : true
You can’t perform that action at this time.
0 commit comments