nuget reorganization

This commit is contained in:
master
2025-11-18 23:45:25 +02:00
parent 77cee6a209
commit d3ecd7f8e6
7712 changed files with 13963 additions and 10007504 deletions

View File

@@ -0,0 +1,27 @@
# 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.