Skip to content

Commit

Permalink
[Docreader] Migrate liveness/readiness/startup probes to healthz/readyz
Browse files Browse the repository at this point in the history
  • Loading branch information
sdauhuchytsrf committed Sep 10, 2024
1 parent 930f447 commit 8369d12
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/docreader/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
apiVersion: v2
name: docreader
home: https://api.regulaforensics.com/
version: 1.2.3
version: 1.2.4
appVersion: 7.4.293365.1641
description: Fast and accurate data extraction from identity documents. On-premise and cloud integration
icon: https://secure.gravatar.com/avatar/71a5efd69d82e444129ad18f51224bbb.jpg
Expand Down
2 changes: 1 addition & 1 deletion charts/docreader/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ A major chart version change (like v0.1.2 -> v1.0.0) indicates that there is an
| Parameter | Description | Default |
|-----------------------------------------------------------|-----------------------------------------------------------------------------------|---------------------------------------------------------------|
| `licenseSecretName` | The name of an existing secret containing the regula.license file | `""` |
| `config.sdk.systemInfo.returnSystemInfo` | Whether to hide system info (/api/ping response) | `true` |
| `config.sdk.systemInfo.returnSystemInfo` | Whether to hide system info (/api/healthz response) | `true` |
| `config.sdk.rfid.enabled` | Whether to enable RFID PKD PA mode | `false` |
| `config.sdk.rfid.pkdPaPath` | RFID PKD PA certificates path | `"/app/pkdPa"` |
| `config.sdk.rfid.pkdPaExistingClaim` | Name of the existing Persistent Volume Claim containing RFID PKD PA certificates | `""` |
Expand Down
6 changes: 3 additions & 3 deletions charts/docreader/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /api/ping
path: /api/healthz
port: docreader
{{- if .Values.config.service.webServer.ssl.enabled }}
scheme: HTTPS
Expand All @@ -69,7 +69,7 @@ spec:
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /api/readiness
path: /api/readyz
port: docreader
{{- if .Values.config.service.webServer.ssl.enabled }}
scheme: HTTPS
Expand All @@ -85,7 +85,7 @@ spec:
{{- if .Values.startupProbe.enabled }}
startupProbe:
httpGet:
path: /api/readiness
path: /api/readyz
port: docreader
{{- if .Values.config.service.webServer.ssl.enabled }}
scheme: HTTPS
Expand Down
2 changes: 1 addition & 1 deletion charts/docreader/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ licenseSecretName: ~
config:
sdk:
systemInfo:
# Returns system information in the /api/ping response and in the /api/process response.
# Returns system information in the /api/healthz response and in the /api/process response.
returnSystemInfo: true

rfid:
Expand Down

0 comments on commit 8369d12

Please sign in to comment.