Skip to content

Commit

Permalink
fix: use /healthz for liveness and /ready for readiness (#435)
Browse files Browse the repository at this point in the history
* fix: use /healthz for liveness and /ready for readiness

Signed-off-by: R.Sicart <roger.sicart@gmail.com>

* chore: bump chart version

Signed-off-by: R.Sicart <roger.sicart@gmail.com>

---------

Signed-off-by: R.Sicart <roger.sicart@gmail.com>
  • Loading branch information
rsicart authored May 9, 2024
1 parent f63cafb commit e230ebf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/policy-reporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: |
It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord
type: application
version: 2.22.5
version: 2.22.6
appVersion: 2.18.2

icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
Expand Down
4 changes: 2 additions & 2 deletions charts/policy-reporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -739,13 +739,13 @@ topologySpreadConstraints: []
# livenessProbe for policy-reporter
livenessProbe:
httpGet:
path: /ready
path: /healthz
port: http

# readinessProbe for policy-reporter
readinessProbe:
httpGet:
path: /healthz
path: /ready
port: http

extraVolumes:
Expand Down

0 comments on commit e230ebf

Please sign in to comment.