parent
b3d1068082
commit
56fcb01bd0
2 changed files with 15 additions and 11 deletions
|
@ -1115,9 +1115,10 @@ blocks, while the keys themselves remain in all caps.
|
||||||
### ReadinessProbe
|
### ReadinessProbe
|
||||||
|
|
||||||
| Name | Description | Value |
|
| Name | Description | Value |
|
||||||
| ------------------------------------------ | ------------------------------------------------- | ------ |
|
| ------------------------------------------ | ------------------------------------------------- | -------------- |
|
||||||
| `gitea.readinessProbe.enabled` | Enable readiness probe | `true` |
|
| `gitea.readinessProbe.enabled` | Enable readiness probe | `true` |
|
||||||
| `gitea.readinessProbe.tcpSocket.port` | Port to probe for readiness | `http` |
|
| `gitea.readinessProbe.httpGet.path` | Path to probe for readiness | `/api/healthz` |
|
||||||
|
| `gitea.readinessProbe.httpGet.port` | Port to probe for readiness | `http` |
|
||||||
| `gitea.readinessProbe.initialDelaySeconds` | Initial delay before readiness probe is initiated | `5` |
|
| `gitea.readinessProbe.initialDelaySeconds` | Initial delay before readiness probe is initiated | `5` |
|
||||||
| `gitea.readinessProbe.timeoutSeconds` | Timeout for readiness probe | `1` |
|
| `gitea.readinessProbe.timeoutSeconds` | Timeout for readiness probe | `1` |
|
||||||
| `gitea.readinessProbe.periodSeconds` | Period for readiness probe | `10` |
|
| `gitea.readinessProbe.periodSeconds` | Period for readiness probe | `10` |
|
||||||
|
@ -1229,6 +1230,7 @@ Forgejo v9 is now EOL.
|
||||||
ClusterIP is now emtpy instead of `None` for http and ssh service.
|
ClusterIP is now emtpy instead of `None` for http and ssh service.
|
||||||
Unsupported api versions for `Ingress` and `PodDisruptionBudget` are removed.
|
Unsupported api versions for `Ingress` and `PodDisruptionBudget` are removed.
|
||||||
`Ingress` and `Service` are now using named ports.
|
`Ingress` and `Service` are now using named ports.
|
||||||
|
The ReadinessProbe is now using the `/api/healthz` endpoint.
|
||||||
|
|
||||||
### To v10
|
### To v10
|
||||||
|
|
||||||
|
|
|
@ -633,7 +633,8 @@ gitea:
|
||||||
## @section ReadinessProbe
|
## @section ReadinessProbe
|
||||||
#
|
#
|
||||||
## @param gitea.readinessProbe.enabled Enable readiness probe
|
## @param gitea.readinessProbe.enabled Enable readiness probe
|
||||||
## @param gitea.readinessProbe.tcpSocket.port Port to probe for readiness
|
## @param gitea.readinessProbe.httpGet.path Path to probe for readiness
|
||||||
|
## @param gitea.readinessProbe.httpGet.port Port to probe for readiness
|
||||||
## @param gitea.readinessProbe.initialDelaySeconds Initial delay before readiness probe is initiated
|
## @param gitea.readinessProbe.initialDelaySeconds Initial delay before readiness probe is initiated
|
||||||
## @param gitea.readinessProbe.timeoutSeconds Timeout for readiness probe
|
## @param gitea.readinessProbe.timeoutSeconds Timeout for readiness probe
|
||||||
## @param gitea.readinessProbe.periodSeconds Period for readiness probe
|
## @param gitea.readinessProbe.periodSeconds Period for readiness probe
|
||||||
|
@ -642,7 +643,8 @@ gitea:
|
||||||
# Modify the readiness probe for your needs or completely disable it by commenting out.
|
# Modify the readiness probe for your needs or completely disable it by commenting out.
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
enabled: true
|
enabled: true
|
||||||
tcpSocket:
|
httpGet:
|
||||||
|
path: /api/healthz
|
||||||
port: http
|
port: http
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: 5
|
||||||
timeoutSeconds: 1
|
timeoutSeconds: 1
|
||||||
|
|
Loading…
Reference in a new issue