Skip to content

Commit

Permalink
OPSEXP-2664: update APS app probes endpoints (#320)
Browse files Browse the repository at this point in the history
Co-authored-by: Giovanni Toraldo <71768+gionn@users.noreply.github.com>
Co-authored-by: alxgomz <alxgomz@users.noreply.github.com>
  • Loading branch information
3 people committed Jun 19, 2024
1 parent 4abadc6 commit d88a0c3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
4 changes: 2 additions & 2 deletions charts/alfresco-activiti/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
description: A Helm chart for Alfresco Activiti
name: alfresco-activiti
version: 0.2.0-alpha.0
appVersion: 24.2.0
version: 0.2.0-alpha.1
appVersion: 24.3.0-SNAPSHOT
dependencies:
- name: alfresco-common
version: 3.1.3
Expand Down
8 changes: 4 additions & 4 deletions charts/alfresco-activiti/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ parent: Charts Reference

# alfresco-activiti

![Version: 0.2.0-alpha.0](https://img.shields.io/badge/Version-0.2.0--alpha.0-informational?style=flat-square) ![AppVersion: 24.2.0](https://img.shields.io/badge/AppVersion-24.2.0-informational?style=flat-square)
![Version: 0.2.0-alpha.1](https://img.shields.io/badge/Version-0.2.0--alpha.1-informational?style=flat-square) ![AppVersion: 24.3.0-SNAPSHOT](https://img.shields.io/badge/AppVersion-24.3.0--SNAPSHOT-informational?style=flat-square)

A Helm chart for Alfresco Activiti

Expand Down Expand Up @@ -55,7 +55,7 @@ A Helm chart for Alfresco Activiti
| image.internalPort | int | `8080` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"quay.io/alfresco/alfresco-process-services"` | |
| image.tag | string | `"24.2.0"` | |
| image.tag | string | `"develop-11791"` | |
| ingress.annotations."nginx.ingress.kubernetes.io/affinity" | string | `"cookie"` | |
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-body-size" | string | `"5g"` | |
| ingress.className | string | `"nginx"` | supported ingress class |
Expand All @@ -66,7 +66,7 @@ A Helm chart for Alfresco Activiti
| license.secretName | string | `nil` | |
| livenessProbe.failureThreshold | int | `5` | |
| livenessProbe.initialDelaySeconds | int | `25` | |
| livenessProbe.path | string | `"/activiti-app/app/rest/locale"` | |
| livenessProbe.path | string | `"/activiti-app/actuator/health/liveness"` | For APS prior to 24.3.0, path must be set to `/activiti-app/app/rest/locale` |
| livenessProbe.periodSeconds | int | `10` | |
| livenessProbe.timeoutSeconds | int | `5` | |
| nodeSelector | object | `{}` | |
Expand All @@ -83,7 +83,7 @@ A Helm chart for Alfresco Activiti
| podSecurityContext.runAsUser | int | `33007` | |
| readinessProbe.failureThreshold | int | `5` | |
| readinessProbe.initialDelaySeconds | int | `25` | |
| readinessProbe.path | string | `"/activiti-app/app/rest/locale"` | |
| readinessProbe.path | string | `"/activiti-app/actuator/health/readiness"` | For APS prior to 24.3.0, path must be set to `/activiti-app/app/rest/locale` |
| readinessProbe.periodSeconds | int | `10` | |
| readinessProbe.timeoutSeconds | int | `5` | |
| replicaCount | int | `1` | |
Expand Down
15 changes: 11 additions & 4 deletions charts/alfresco-activiti/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ podSecurityContext:
fsGroup: 33007
image:
repository: quay.io/alfresco/alfresco-process-services
tag: 24.2.0
tag: develop-11791
pullPolicy: IfNotPresent
internalPort: 8080
service:
Expand Down Expand Up @@ -60,13 +60,20 @@ persistence:
data:
mountPath: "/usr/local/data"
subPath: "alfresco-process-services/process-data"
readinessProbe: &apsProbe
path: /activiti-app/app/rest/locale
readinessProbe:
# -- For APS prior to 24.3.0, path must be set to `/activiti-app/app/rest/locale`
path: /activiti-app/actuator/health/readiness
initialDelaySeconds: 25
periodSeconds: 10
failureThreshold: 5
timeoutSeconds: 5
livenessProbe:
# -- For APS prior to 24.3.0, path must be set to `/activiti-app/app/rest/locale`
path: /activiti-app/actuator/health/liveness
initialDelaySeconds: 25
periodSeconds: 10
failureThreshold: 5
timeoutSeconds: 5
livenessProbe: *apsProbe
# -- Name of a pre-existing configmap to load env vars from (overrides .environment values)
envFromExistingConfigMap: null
environment:
Expand Down

0 comments on commit d88a0c3

Please sign in to comment.