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
41 changes: 0 additions & 41 deletions docs/operator/virtualmcpserver-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,40 +249,6 @@ spec:
dependsOn: ["confirm_deploy"]
```

### `.spec.tokenCache` (optional)

Configures token caching behavior.

**Type**: `TokenCacheConfig`

**Fields**:
- `provider` (string, optional, default: "memory"): Cache provider type (`memory` or `redis`)
- `memory` (MemoryCacheConfig, optional): In-memory cache configuration
- `redis` (RedisCacheConfig, optional): Redis cache configuration

**Example (memory)**:
```yaml
spec:
tokenCache:
provider: memory
memory:
maxEntries: 1000
ttlOffset: 5m
```

**Example (redis)**:
```yaml
spec:
tokenCache:
provider: redis
redis:
address: redis:6379
db: 0
passwordRef:
name: redis-secret
key: password
```

### `.spec.operational` (optional)

Defines operational settings like timeouts and health checks.
Expand Down Expand Up @@ -478,13 +444,6 @@ spec:
description: "{{.steps.fetch_logs.output}}"
dependsOn: ["fetch_logs"]

# Token caching
tokenCache:
provider: memory
memory:
maxEntries: 1000
ttlOffset: 5m

# Operational settings
operational:
timeouts:
Expand Down
8 changes: 0 additions & 8 deletions examples/vmcp-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,6 @@ outgoing_auth:
# audience: "jira-api" # Token audience for Jira API
# scopes: ["read:jira-work", "write:jira-work"]

# ===== TOKEN CACHING =====
# Token cache configuration
token_cache:
provider: memory # Options: memory | redis | custom
config:
max_entries: 1000
ttl_offset: "5m" # Refresh tokens 5 minutes before expiry

# ===== TOOL AGGREGATION =====
aggregation:
# Conflict resolution strategy
Expand Down
Loading