|
|
@@ -141,14 +141,15 @@ The command removes all the Kubernetes components associated with the chart and
|
|
|
| installCRDs | bool | `true` | If set, install and upgrade CRDs through helm chart. |
|
|
|
| leaderElect | bool | `false` | If true, external-secrets will perform leader election between instances to ensure no more than one instance of external-secrets operates at a time. |
|
|
|
| livenessProbe.enabled | bool | `false` | Enabled determines if the liveness probe should be used or not. By default it's disabled. |
|
|
|
-| livenessProbe.spec | object | `{"address":"","failureThreshold":5,"httpGet":{"path":"/healthz","port":8082},"initialDelaySeconds":10,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":5}` | The body of the liveness probe settings. |
|
|
|
+| livenessProbe.spec | object | `{"address":"","failureThreshold":5,"httpGet":{"path":"/healthz","port":"live"},"initialDelaySeconds":10,"periodSeconds":10,"port":8082,"successThreshold":1,"timeoutSeconds":5}` | The body of the liveness probe settings. |
|
|
|
| livenessProbe.spec.address | string | `""` | Address for liveness probe. |
|
|
|
| livenessProbe.spec.failureThreshold | int | `5` | Number of consecutive probe failures that should occur before considering the probe as failed. |
|
|
|
-| livenessProbe.spec.httpGet | object | `{"path":"/healthz","port":8082}` | Handler for liveness probe. |
|
|
|
+| livenessProbe.spec.httpGet | object | `{"path":"/healthz","port":"live"}` | Handler for liveness probe. |
|
|
|
| livenessProbe.spec.httpGet.path | string | `"/healthz"` | Path for liveness probe. |
|
|
|
-| livenessProbe.spec.httpGet.port | int | `8082` | Set this value to 8082 to active liveness probes. @schema type: [string, integer] |
|
|
|
+| livenessProbe.spec.httpGet.port | string | `"live"` | Set this value to 'live' (for named port) or an an integer for liveness probes. @schema type: [string, integer] |
|
|
|
| livenessProbe.spec.initialDelaySeconds | int | `10` | Delay in seconds for the container to start before performing the initial probe. |
|
|
|
| livenessProbe.spec.periodSeconds | int | `10` | Period in seconds for K8s to start performing probes. |
|
|
|
+| livenessProbe.spec.port | int | `8082` | Named port for liveness probe. |
|
|
|
| livenessProbe.spec.successThreshold | int | `1` | Number of successful probes to mark probe successful. |
|
|
|
| livenessProbe.spec.timeoutSeconds | int | `5` | Specify the maximum amount of time to wait for a probe to respond before considering it fails. |
|
|
|
| log | object | `{"level":"info","timeEncoding":"epoch"}` | Specifies Log Params to the External Secrets Operator |
|