|
2 | 2 |
|
3 | 3 | CryptPad is a collaboration office suite that is end-to-end-encrypted and open-source. |
4 | 4 |
|
5 | | -  |
| 5 | +  |
6 | 6 |
|
7 | 7 | ## Installing the Chart |
8 | 8 |
|
@@ -119,6 +119,30 @@ application_config: |
119 | 119 | | persistence.enabled | bool | `true` | Enable the persistence | |
120 | 120 | | podAnnotations | object | `{}` | Annotations for the Pod | |
121 | 121 | | podSecurityContext | object | `{"fsGroup":4001}` | Security context for the Pod | |
| 122 | +| probes.liveness.enabled | bool | `true` | Enable liveness probe | |
| 123 | +| probes.liveness.failureThreshold | int | `5` | Failure threshold for liveness probe | |
| 124 | +| probes.liveness.httpGet.enabled | bool | `true` | If enabled uses httpGet to check, if false uses tcpSocket checking. | |
| 125 | +| probes.liveness.httpGet.path | string | `"/"` | Path to be tested with HTTP GET request | |
| 126 | +| probes.liveness.initialDelaySeconds | int | `0` | Initial delay seconds for liveness probe | |
| 127 | +| probes.liveness.periodSeconds | int | `10` | Period seconds for liveness probe | |
| 128 | +| probes.liveness.successThreshold | int | `1` | Success threshold for liveness probe | |
| 129 | +| probes.liveness.timeoutSeconds | int | `1` | Timeout seconds for liveness probe | |
| 130 | +| probes.readiness.enabled | bool | `true` | Enable readiness probe | |
| 131 | +| probes.readiness.failureThreshold | int | `5` | Failure threshold for readiness probe | |
| 132 | +| probes.readiness.httpGet.enabled | bool | `true` | If enabled uses httpGet to check, if false uses tcpSocket checking. | |
| 133 | +| probes.readiness.httpGet.path | string | `"/"` | Path to be tested with HTTP GET request | |
| 134 | +| probes.readiness.initialDelaySeconds | int | `0` | Initial delay seconds for readiness probe | |
| 135 | +| probes.readiness.periodSeconds | int | `10` | Period seconds for readiness probe | |
| 136 | +| probes.readiness.successThreshold | int | `1` | Success threshold for readiness probe | |
| 137 | +| probes.readiness.timeoutSeconds | int | `1` | Timeout seconds for readiness probe | |
| 138 | +| probes.startup.enabled | bool | `true` | Enable startup probe | |
| 139 | +| probes.startup.failureThreshold | int | `5` | Failure threshold for startup probe | |
| 140 | +| probes.startup.httpGet.enabled | bool | `false` | If enabled uses httpGet to check, if false uses tcpSocket checking. | |
| 141 | +| probes.startup.httpGet.path | string | `"/"` | Path to be tested with HTTP GET request | |
| 142 | +| probes.startup.initialDelaySeconds | int | `0` | Initial delay seconds for startup probe | |
| 143 | +| probes.startup.periodSeconds | int | `10` | Period seconds for startup probe | |
| 144 | +| probes.startup.successThreshold | int | `1` | Success threshold for startup probe | |
| 145 | +| probes.startup.timeoutSeconds | int | `1` | Timeout seconds for startup probe | |
122 | 146 | | replicaCount | int | `1` | Number of replicas | |
123 | 147 | | resources | object | `{}` | Specify default resources. We usually recommend not to specify default resources and to leave this as a conscious choice for the user. This also increases chances charts run on environments with little resources, such as Minikube. | |
124 | 148 | | securityContext | object | `{}` | Security context | |
|
0 commit comments