From 383b983d65c3313be19562ca136c4f001e660a38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Sat, 9 May 2020 13:51:50 +0100 Subject: [PATCH] [stable/karma] change default livenessProbe.path to /health (#21793) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- stable/karma/Chart.yaml | 2 +- stable/karma/README.md | 2 +- stable/karma/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/karma/Chart.yaml b/stable/karma/Chart.yaml index 2117c0d50a..f92b03dbee 100644 --- a/stable/karma/Chart.yaml +++ b/stable/karma/Chart.yaml @@ -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 diff --git a/stable/karma/README.md b/stable/karma/README.md index b8f869e220..e0916ac217 100644 --- a/stable/karma/README.md +++ b/stable/karma/README.md @@ -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 | `` | diff --git a/stable/karma/values.yaml b/stable/karma/values.yaml index 42294ef4b2..02ab328330 100644 --- a/stable/karma/values.yaml +++ b/stable/karma/values.yaml @@ -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!