Skip to content

Commit

Permalink
Merge pull request #147 from xenit-eu/xenops-1161
Browse files Browse the repository at this point in the history
[XENOPS-1161] change livenessprobe thresholds
  • Loading branch information
hechmi-dammak-xenit authored Apr 22, 2024
2 parents 5a2b1ea + 089dac2 commit 50dfc5d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
chronology things are added/fixed/changed and - where possible - links to the PRs involved.

### Changes
[XENOPS-1161]
* change liveness probe threshold to trigger after readiness probe failure to avoid looping restarts on slow systems


* make acs liveliness and readiness completely overridable
* make transformation services components each enable configurable
* remove mq config in other deployments when mq is disabled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ spec:
httpGet:
path: /ready
port: 8090
initialDelaySeconds: 20
initialDelaySeconds: 10
periodSeconds: 60
timeoutSeconds: 10
livenessProbe:
httpGet:
path: /live
port: 8090
initialDelaySeconds: 10
initialDelaySeconds: 20
periodSeconds: 30
failureThreshold: 1
timeoutSeconds: 10
Expand Down
8 changes: 4 additions & 4 deletions xenit-alfresco/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ acs:
path: /alfresco/api/-default-/public/alfresco/versions/1/probes/-live-
port: 8080
scheme: HTTP
failureThreshold: 1
failureThreshold: 8
initialDelaySeconds: 130
periodSeconds: 20
successThreshold: 1
Expand All @@ -74,7 +74,7 @@ acs:
path: /alfresco/api/-default-/public/alfresco/versions/1/probes/-ready-
port: 8080
scheme: HTTP
failureThreshold: 6
failureThreshold: 3
initialDelaySeconds: 60
periodSeconds: 20
successThreshold: 1
Expand Down Expand Up @@ -112,13 +112,13 @@ share:
memory: "256Mi"
cpu: "0.5"
livenessProbe:
failureThreshold: 1
failureThreshold: 8
initialDelaySeconds: 130
periodSeconds: 20
successThreshold: 1
timeoutSeconds: 10
readinessProbe:
failureThreshold: 6
failureThreshold: 3
initialDelaySeconds: 60
periodSeconds: 20
successThreshold: 1
Expand Down

0 comments on commit 50dfc5d

Please sign in to comment.