Skip to main content

Health Check Configuration

ParameterDescriptionRequiredDefault
healthCheck.enabledIf set to true, enables health check endpointsfalsefalse
healthCheck.portPort for health check endpointsfalse8060

Endpoints:

  • GET /healthz - Returns "OK" (text/plain)
  • GET /health - Returns {"status": "ok"} (application/json)

Example

apiVersion: v1
kind: Namespace
metadata:
name: kwatch
---
apiVersion: v1
kind: ConfigMap
metadata:
name: kwatch
namespace: kwatch
data:
config.yaml: |
healthCheck:
enabled: true
port: 8060