Refactor Helm chart for API7EE: clarify gateway requirements, improve
All checks were successful
Helm Chart Build / lint-only (push) Has been skipped
Helm Chart Build / build-helm (push) Successful in 31s
Build and Deploy / build-api (push) Successful in 1m14s
Build and Deploy / build-web (push) Successful in 1m36s

ADC config templating, and enhance gateway health checks
This commit is contained in:
d.viti
2025-10-08 13:44:01 +02:00
parent c0832ff59b
commit b2e0d5bd10
4 changed files with 106 additions and 21 deletions

View File

@@ -214,4 +214,5 @@ async def llm_health():
}
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8001)
port = int(os.getenv("PORT", 8080))
uvicorn.run(app, host="0.0.0.0", port=port)