Skip to content

Commit 7c23870

Browse files
authored
Update RELEASE.md with CSRF_SECRET instructions (#33)
Added instructions for the required CSRF_SECRET environment variable for CSRF protection in Kubernetes deployments.
1 parent c5c8b15 commit 7c23870

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

RELEASE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,17 @@ CSRF Protection (8a78b2b)
2727
- Updated docker-compose configurations with new environment variables
2828
- E2E test suite improvements and reliability fixes
2929
- Added Kubernetes deployment note in README
30+
31+
### Kubernetes
32+
33+
A `CSRF_SECRET` environment variable is now required for CSRF protection. Generate a secure 32+ character random string:
34+
35+
```bash
36+
openssl rand -base64 32
37+
38+
Add it to your deployment:
39+
- Docker Compose: Add CSRF_SECRET=<your-secret> to the backend service environment
40+
- Kubernetes: Add to your ConfigMap/Secret and reference in the backend deployment
41+
42+
If not set, the backend will refuse to start.
43+
```

0 commit comments

Comments
 (0)