Skip to content

Commit

Permalink
few catches
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacius committed Sep 27, 2024
1 parent 8be37c3 commit f4e0cea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions charts/alfresco-adf-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| ingress.tls | list | `[]` | |
| livenessProbe.failureThreshold | int | `3` | |
| livenessProbe.initialDelaySeconds | int | `0` | |
| livenessProbe.path | string | `"/"` | |
| livenessProbe.periodSeconds | int | `10` | |
| livenessProbe.timeoutSeconds | int | `1` | |
| nameOverride | string | `""` | |
Expand All @@ -48,6 +49,7 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| podSecurityContext.runAsUser | int | `101` | Retrocompat with Activiti Common chart |
| readinessProbe.failureThreshold | int | `3` | |
| readinessProbe.initialDelaySeconds | int | `0` | |
| readinessProbe.path | string | `"/"` | |
| readinessProbe.periodSeconds | int | `10` | |
| readinessProbe.timeoutSeconds | int | `1` | |
| replicaCount | int | `1` | |
Expand Down
2 changes: 2 additions & 0 deletions charts/alfresco-adf-app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,14 @@ ingress:
tls: []

livenessProbe:
path: /
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3

readinessProbe:
path: /
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
Expand Down
4 changes: 2 additions & 2 deletions charts/alfresco-share/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| ingress.tls | list | `[]` | |
| known_urls | string | `nil` | Provide the list of URL considered allowed to access Share resources (used for CSRF protection). The value be either a list of strings or a single string separated by spaces. |
| livenessProbe.httpGet.path | string | `"/share"` | |
| livenessProbe.httpGet.port | int | `8080` | |
| livenessProbe.httpGet.port | string | `"http"` | |
| livenessProbe.initialDelaySeconds | int | `15` | |
| livenessProbe.periodSeconds | int | `20` | |
| livenessProbe.timeoutSeconds | int | `5` | |
Expand All @@ -63,7 +63,7 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| podLabels | object | `{}` | |
| podSecurityContext.runAsNonRoot | bool | `true` | |
| readinessProbe.httpGet.path | string | `"/share"` | |
| readinessProbe.httpGet.port | int | `8080` | |
| readinessProbe.httpGet.port | string | `"http"` | |
| readinessProbe.initialDelaySeconds | int | `15` | |
| readinessProbe.periodSeconds | int | `30` | |
| readinessProbe.timeoutSeconds | int | `5` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/alfresco-share/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ environment:
readinessProbe:
httpGet:
path: /share
port: 8080
port: http
initialDelaySeconds: 15
periodSeconds: 30
timeoutSeconds: 5
livenessProbe:
httpGet:
path: /share
port: 8080
port: http
initialDelaySeconds: 15
periodSeconds: 20
timeoutSeconds: 5
Expand Down

0 comments on commit f4e0cea

Please sign in to comment.