[stable/karma] change default livenessProbe.path to /health (#21793)

This is a dedicated health check endpoint that doesn't require any authentication. Using / might fail if auth is enabled.
See prymitive/karma#1603

Signed-off-by: Łukasz Mierzwa <l.mierzwa@gmail.com>
This commit is contained in:
Łukasz Mierzwa
2020-05-09 05:51:50 -07:00
committed by GitHub
parent 98d951ea63
commit 383b983d65
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ home: https://github.com/prymitive/karma
sources:
- https://hub.docker.com/r/lmierzwa/karma/
- https://github.com/prymitive/karma
version: 1.5.0
version: 1.5.1
maintainers:
- name: davidkarlsen
email: david@davidkarlsen.com
+1 -1
View File
@@ -62,7 +62,7 @@ The following table lists the configurable parameters of the karma chart and the
| `serviceAccount.name` | Override service-account name | `` |
| `livenessProbe.delay` | Specify delay in executing probe | `5` |
| `livenessProbe.period` | Speicy period of liveness probe | `5` |
| `livenessProbe.path` | Specify path liveness probe should hit | `/` |
| `livenessProbe.path` | Specify path liveness probe should hit | `/health` |
| `configMap.enabled` | Provide a custom karma configuration | `false` |
| `configMap.annotations` | Annotations to add to the config map | `{}` |
| `configMap.rawConfig` | A karma compatible YAML configuration | `` |
+1 -1
View File
@@ -70,7 +70,7 @@ securityContext: {}
livenessProbe:
delay: 5
period: 5
path: /
path: /health
# configMap dictates if a configmap based configuration for Karma should be used
# to provide advanced configuration. NOTE, you must use port 8080!