# Helm Readiness & Probes This app serves static health endpoints for platform probes: - `/assets/health/liveness.json` - `/assets/health/readiness.json` - `/assets/health/version.json` These are packaged with the Angular build. Configure Helm/Nginx to route the probes directly to the web pod. ## Suggested Helm values ```yaml livenessProbe: httpGet: path: /assets/health/liveness.json port: http readinessProbe: httpGet: path: /assets/health/readiness.json port: http ``` ## Updating - Edit the JSON under `src/assets/health/*.json` for environment-specific readiness details. - Run `npm run build` (or CI pipeline) to bake the files into the image.