Chapter 20 · Azure Kubernetes App Deploy
Subchapter 20.29
knowledge-packs/frameworks/fastapi.mdMarkdown6 KBView on GitHub
Applies to: Projects detected with
requirements.txt,pyproject.toml, orPipfilecontainingfastapi
| Property | Value |
|---|---|
| Signal files | requirements.txt/pyproject.toml/Pipfile containing fastapi |
| Default port | 8000 |
| Health path | /health + /ready |
| Base template | templates/dockerfiles/python.Dockerfile (+ references/base-images.md) |
FastAPI health endpoints must be defined explicitly in application code:
from fastapi import FastAPI
app = FastAPI()
@app.get("/health")
async def health():
return {"status": "ok"}from fastapi import FastAPI, status
from fastapi.responses import JSONResponse
from sqlalchemy.ext.asyncio import AsyncSession
@app.get("/ready")
async def ready(db: AsyncSession = Depends(get_db)):
try:
await db.execute(text("SELECT 1"))
return {"status": "ready"}
except Exception:
return JSONResponse(
status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
content={"status": "not ready"},
)livenessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 5
periodSeconds: 15
timeoutSeconds: 3
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 8000
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 3
failureThreshold: 3Note: FastAPI apps start quickly (typically <2s), so initialDelaySeconds: 5 is sufficient — much lower than JVM-based frameworks.
FastAPI does not have a built-in profile system. Database configuration is typically driven by environment variables:
| ORM / Driver | Package(s) | Connection String Format |
|---|---|---|
| SQLAlchemy async + asyncpg | sqlalchemy[asyncio], asyncpg | postgresql+asyncpg://user:pass@host:5432/db |
| Tortoise ORM | tortoise-orm, asyncpg | postgres://user:pass@host:5432/db |
| SQLModel | sqlmodel, asyncpg | postgresql+asyncpg://user:pass@host:5432/db |
| asyncpg direct | asyncpg | postgresql://user:pass@host:5432/db |
Important: SQLAlchemy async requires the +asyncpg suffix in the connection URL scheme (postgresql+asyncpg://). Omitting it will default to the synchronous psycopg2 driver, which blocks the event loop.
env:
- name: DATABASE_URL
value: "postgresql+asyncpg://{{IDENTITY_NAME}}@{{PG_SERVER_NAME}}.postgres.database.azure.com:5432/{{DB_NAME}}?sslmode=require"apiVersion: v1
kind: ConfigMap
metadata:
name: {{APP_NAME}}-config
data:
DATABASE_URL: "postgresql+asyncpg://{{IDENTITY_NAME}}@{{PG_SERVER_NAME}}.postgres.database.azure.com:5432/{{DB_NAME}}?sslmode=require"
UVICORN_WORKERS: "1"See references/workload-identity.md for connection patterns. Requires azure-identity package.
When readOnlyRootFilesystem: true is set, FastAPI apps typically only need /tmp writable:
/tmp as the default staging directory for UploadFile/tmpvolumes:
- name: tmp
emptyDir: {}
containers:
- name: app
volumeMounts:
- name: tmp
mountPath: /tmpNo other writable paths are typically needed for production FastAPI apps.
FastAPI with Uvicorn is async and lightweight. Size for workload concurrency.
| Resource | Request | Limit |
|---|---|---|
| CPU | 100m | 500m |
| Memory | 128Mi | 256Mi |
--host 0.0.0.0 --port 8000 passed to uvicorn — must include --host 0.0.0.0 (uvicorn defaults to 127.0.0.1, unreachable from Kubernetes probes)--workers 1 for pure-async apps (async code uses a single event loop); 2 * CPU_CORES + 1 only for sync/blocking handlersPORT (read via uvicorn --port $PORT or int(os.environ.get("PORT", 8000)))Uvicorn logs the port on startup: Uvicorn running on http://0.0.0.0:8000
| Tool | Install Command | Output |
|---|---|---|
| pip | pip install --no-cache-dir -r requirements.txt | Packages in site-packages |
| Poetry | poetry install --only main --no-interaction | Packages in virtualenv |
| uv | uv sync --frozen --no-dev | Packages in virtualenv |
The --no-cache-dir flag (pip) and --no-interaction flag (Poetry) suppress interactive prompts — important for CI/CD and Docker builds.
| Issue | Symptom | Fix |
|---|---|---|
| Uvicorn workers misconfigured | High latency under load, single-core CPU usage | Set --workers to 2 * CPU_CORES + 1 for sync code, or 1 when using async handlers (async code uses a single event loop) |
| Async DB pool exhaustion | asyncpg.exceptions.TooManyConnectionsError | Configure pool size with create_async_engine(pool_size=5, max_overflow=10) and match PostgreSQL max_connections |
| Alpine build fails | gcc errors installing cryptography, psycopg2, numpy | Use the Debian-slim Python base (see references/base-images.md) instead of Alpine |
| Uvicorn binds to localhost | Connection refused from Kubernetes probes | Set --host 0.0.0.0 — uvicorn defaults to 127.0.0.1 which is unreachable from outside the container |
| Missing uvicorn in production | ModuleNotFoundError: No module named 'uvicorn' | Ensure uvicorn[standard] is in requirements.txt — it is often only in dev dependencies |