File tree Expand file tree Collapse file tree 3 files changed +3
-23
lines changed
docs/sources/setup/install/helm Expand file tree Collapse file tree 3 files changed +3
-23
lines changed Original file line number Diff line number Diff line change @@ -6872,15 +6872,6 @@ false
6872
6872
"readOnlyRootFilesystem": true
6873
6873
}
6874
6874
</pre >
6875
- </td >
6876
- </tr>
6877
- <tr>
6878
- <td>memcached.customReadinessProbe</td>
6879
- <td>object</td>
6880
- <td>custom Readiness probe for memcached pods that overrides the default one</td>
6881
- <td><pre lang="json">
6882
- {}
6883
- </pre >
6884
6875
</td >
6885
6876
</tr>
6886
6877
<tr>
@@ -6936,10 +6927,9 @@ null
6936
6927
<tr>
6937
6928
<td>memcached.readinessProbe</td>
6938
6929
<td>object</td>
6939
- <td>Readiness probe for memcached pods</td>
6930
+ <td>Readiness probe for memcached pods (probe port defaults to container port) </td>
6940
6931
<td><pre lang="json">
6941
6932
{
6942
- "enabled": false,
6943
6933
"failureThreshold": 6,
6944
6934
"initialDelaySeconds": 5,
6945
6935
"periodSeconds": 5,
Original file line number Diff line number Diff line change @@ -124,17 +124,10 @@ spec:
124
124
{ {- end } }
125
125
securityContext:
126
126
{ {- toYaml $.ctx.Values.memcached.containerSecurityContext | nindent 12 } }
127
- { {- if $.ctx.Values.memcached.customReadinessProbe } }
128
127
readinessProbe:
129
- { {- toYaml $.ctx.Values.memcached.customReadinessProbe | nindent 12 } }
130
- { {- else if $.ctx.Values.memcached.readinessProbe.enabled } }
131
- readinessProbe:
132
128
tcpSocket:
133
129
port: { { .port } }
134
- { {- with omit $.ctx.Values.memcached.readinessProbe " enabled" } }
135
- { {- toYaml . | nindent 12 } }
136
- { {- end } }
137
- { {- end } }
130
+ { {- toYaml $.ctx.Values.memcached.readinessProbe | nindent 12 } }
138
131
{ {- if or .persistence.enabled .extraVolumeMounts } }
139
132
volumeMounts:
140
133
{ {- if .persistence.enabled } }
Original file line number Diff line number Diff line change @@ -3204,15 +3204,12 @@ memcached:
3204
3204
fsGroup : 11211
3205
3205
# -- The name of the PriorityClass for memcached pods
3206
3206
priorityClassName : null
3207
- # -- Readiness probe for memcached pods
3207
+ # -- Readiness probe for memcached pods (probe port defaults to container port)
3208
3208
readinessProbe :
3209
- enabled : false
3210
3209
initialDelaySeconds : 5
3211
3210
periodSeconds : 5
3212
3211
timeoutSeconds : 3
3213
3212
failureThreshold : 6
3214
- # -- custom Readiness probe for memcached pods that overrides the default one
3215
- customReadinessProbe : {}
3216
3213
# -- The SecurityContext for memcached containers
3217
3214
containerSecurityContext :
3218
3215
readOnlyRootFilesystem : true
You can’t perform that action at this time.
0 commit comments