Skip to content

Commit

Permalink
OPSEXP-2338: allow up to 3 minutes by default to startup repo (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
alxgomz authored Oct 13, 2023
1 parent 4dd84c9 commit 5b36ab3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/alfresco-repository/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: alfresco-repository
description: Alfresco content repository Helm chart
type: application
version: 0.1.0-alpha.16
version: 0.1.0-alpha.17
appVersion: 23.1.0-A21
dependencies:
- name: alfresco-common
Expand Down
6 changes: 3 additions & 3 deletions charts/alfresco-repository/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# alfresco-repository

![Version: 0.1.0-alpha.16](https://img.shields.io/badge/Version-0.1.0--alpha.16-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 23.1.0-A21](https://img.shields.io/badge/AppVersion-23.1.0--A21-informational?style=flat-square)
![Version: 0.1.0-alpha.17](https://img.shields.io/badge/Version-0.1.0--alpha.17-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 23.1.0-A21](https://img.shields.io/badge/AppVersion-23.1.0--A21-informational?style=flat-square)

Alfresco content repository Helm chart

Expand Down Expand Up @@ -120,10 +120,10 @@ Alfresco content repository Helm chart
| serviceAccount.annotations | object | `{}` | |
| serviceAccount.create | bool | `true` | |
| serviceAccount.name | string | `"alfresco-repo-sa"` | |
| startupProbe.failureThreshold | int | `5` | |
| startupProbe.failureThreshold | int | `9` | |
| startupProbe.httpGet.path | string | `"/alfresco/api/-default-/public/alfresco/versions/1/probes/-live-"` | |
| startupProbe.httpGet.port | string | `"http"` | |
| startupProbe.periodSeconds | int | `30` | |
| startupProbe.periodSeconds | int | `20` | |
| startupProbe.timeoutSeconds | int | `3` | |
| strategy.rollingUpdate.maxSurge | int | `1` | |
| strategy.rollingUpdate.maxUnavailable | int | `0` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/alfresco-repository/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ resources:
memory: "8Gi"

startupProbe:
periodSeconds: 30
failureThreshold: 5
periodSeconds: 20
failureThreshold: 9
timeoutSeconds: 3
httpGet:
path: /alfresco/api/-default-/public/alfresco/versions/1/probes/-live-
Expand Down

0 comments on commit 5b36ab3

Please sign in to comment.