You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/deployment/helm.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -201,11 +201,15 @@ API's you need to install the prometheus operator in your cluster.
201
201
|`master.extraArgs`| array |[]| Additional [command line arguments](../reference/master-commandline-reference.md) to pass to nfd-master |
202
202
|`master.extraEnvs`| array |[]| Additional environment variables to pass to nfd-master |
203
203
|`master.revisionHistoryLimit`| integer || Specify how many old ReplicaSets for this Deployment you want to retain. [revisionHistoryLimit](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#revision-history-limit)|
204
-
|`master.livenessProbe.initialDelaySeconds`| integer | 10 | Specifies the number of seconds after the container has started before liveness probes are initiated. |
204
+
|`master.startupProbe.initialDelaySecond s`| integer | 0 (by Kubernetes) | Specifies the number of seconds after the container has started before startup probes are initiated. |
205
+
|`master.startupProbe.failureThreshold`| integer | 30 | Specifies the number of consecutive failures of startup probes before considering the pod as not ready. |
206
+
|`master.startupProbe.periodSeconds`| integer | 10 (by Kubernetes) | Specifies how often (in seconds) to perform the startup probe. |
207
+
|`master.startupProbe.timeoutSeconds`| integer | 1 (by Kubernetes) | Specifies the number of seconds after which the probe times out. |
208
+
|`master.livenessProbe.initialDelaySeconds`| integer | 0 (by Kubernetes) | Specifies the number of seconds after the container has started before liveness probes are initiated. |
205
209
|`master.livenessProbe.failureThreshold`| integer | 3 (by Kubernetes) | Specifies the number of consecutive failures of liveness probes before considering the pod as not ready. |
206
210
|`master.livenessProbe.periodSeconds`| integer | 10 (by Kubernetes) | Specifies how often (in seconds) to perform the liveness probe. |
207
211
|`master.livenessProbe.timeoutSeconds`| integer | 1 (by Kubernetes) | Specifies the number of seconds after which the probe times out. |
208
-
|`master.readinessProbe.initialDelaySeconds`| integer |5 | Specifies the number of seconds after the container has started before readiness probes are initiated. |
212
+
|`master.readinessProbe.initialDelaySeconds`| integer |0 (by Kubernetes)| Specifies the number of seconds after the container has started before readiness probes are initiated. |
209
213
|`master.readinessProbe.failureThreshold`| integer | 10 | Specifies the number of consecutive failures of readiness probes before considering the pod as not ready. |
210
214
|`master.readinessProbe.periodSeconds`| integer | 10 (by Kubernetes) | Specifies how often (in seconds) to perform the readiness probe. |
211
215
|`master.readinessProbe.timeoutSeconds`| integer | 1 (by Kubernetes) | Specifies the number of seconds after which the probe times out. |
0 commit comments