Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Downloaded dependency tarballs
charts/*.tgz
.playwright-mcp/
.claude/settings.local.json
8 changes: 4 additions & 4 deletions docs/CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ Complete reference for all `values.yaml` parameters in the Citadel Helm chart.
| Parameter | Description | Default | Env Var |
|-----------|-------------|---------|---------|
| `citadel.guardrails.enabled` | Enable the guardrails system | `true` | `GUARDRAILS_ENABLED` |
| `citadel.guardrails.openaiModeration` | Enable OpenAI moderation API guardrail | `false` | `GUARDRAIL_OPENAI_MODERATION` |
| `citadel.guardrails.openaiModeration` | Enable OpenAI moderation API guardrail | `true` | `GUARDRAIL_OPENAI_MODERATION` |
| `citadel.guardrails.piiFilter` | Enable PII detection and filtering | `false` | `GUARDRAIL_PII_FILTER` |

### Passthrough

| Parameter | Description | Default | Env Var |
|-----------|-------------|---------|---------|
| `citadel.passthrough.enabled` | Enable passthrough mode for client-provided auth | `false` | `PASSTHROUGH_ENABLED` |
| `citadel.passthrough.enabled` | Enable passthrough mode for client-provided auth | `true` | `PASSTHROUGH_ENABLED` |

When passthrough is enabled, clients can send their own LLM provider credentials via the `Authorization` header while using a Citadel key in `x-citadel-api-key` for gateway authentication. Useful for Claude Code Max users.

Expand Down Expand Up @@ -73,8 +73,8 @@ Rate limits can also be set per-key when creating API keys via the management AP

| Parameter | Description | Default | Env Var |
|-----------|-------------|---------|---------|
| `logging.requestBody` | Store full request bodies in logs | `false` | `LOG_REQUEST_BODY` |
| `logging.responseBody` | Store full response bodies in logs | `false` | `LOG_RESPONSE_BODY` |
| `logging.requestBody` | Store full request bodies in logs | `true` | `LOG_REQUEST_BODY` |
| `logging.responseBody` | Store full response bodies in logs | `true` | `LOG_RESPONSE_BODY` |

Enabling body logging significantly increases storage usage but provides a full audit trail.

Expand Down
1 change: 1 addition & 0 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ spec:
annotations:
checksum/env: {{ include (print $.Template.BasePath "/env.yaml") . | sha256sum }}
checksum/secret: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
checksum/models: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
{{- with .Values.podAnnotations }}
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
4 changes: 2 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ rateLimiting:

# -- Request/response body logging (increases storage usage)
logging:
requestBody: false
responseBody: false
requestBody: true
responseBody: true

# -- SocketZero JWT authentication (keyless)
socketzero:
Expand Down