manual-deploy 2026-06-07 09:13
This commit is contained in:
parent
ee8564972b
commit
c4f1298e5a
@ -25,6 +25,15 @@ app.include_router(deploy.router, prefix="/api/deploy", tags=["deploy"])
|
|||||||
app.include_router(config.router, prefix="/api/config", tags=["config"])
|
app.include_router(config.router, prefix="/api/config", tags=["config"])
|
||||||
app.include_router(llm.router, prefix="/api/llm", tags=["llm"])
|
app.include_router(llm.router, prefix="/api/llm", tags=["llm"])
|
||||||
|
|
||||||
|
# ── Gen6 확장 (2026-06-07) ────────────────────────────────────────────────
|
||||||
|
from routers import ai_analytics2, platform_mgmt, adv_security_mgr, ops_automation, finops2, cross_system
|
||||||
|
app.include_router(ai_analytics2.router) # AI 분석 v2 (예측 KPI·이상패턴·AI리포트)
|
||||||
|
app.include_router(platform_mgmt.router) # 플랫폼 관리 (멀티클러스터·GitOps·배포맵)
|
||||||
|
app.include_router(adv_security_mgr.router) # 고급 보안 (ZeroTrust UI·위협헌팅·SOC)
|
||||||
|
app.include_router(ops_automation.router) # 운영 자동화 (노코드·런북·정책UI·스케줄러)
|
||||||
|
app.include_router(finops2.router) # FinOps v2 (비용최적화·예산예측·태깅)
|
||||||
|
app.include_router(cross_system.router) # 크로스 시스템 (ITSM 구독·데이터동기화)
|
||||||
|
|
||||||
@app.get("/health")
|
@app.get("/health")
|
||||||
async def health():
|
async def health():
|
||||||
return {"status": "ok", "service": "guardia-manager", "port": 8002}
|
return {"status": "ok", "service": "guardia-manager", "port": 8002}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user