35 lines
No EOL
825 B
Markdown
35 lines
No EOL
825 B
Markdown
# RBAC Performance Test Environment
|
|
|
|
## Infrastructure Requirements
|
|
- **Test Nodes**: 3 worker nodes (4 vCPU, 16GB RAM each)
|
|
- **Load Generator**: 1 node (8 vCPU, 32GB RAM)
|
|
- **Monitoring**: Prometheus + Grafana stack
|
|
- **Network**: 10Gbps between nodes
|
|
|
|
## Configuration
|
|
```yaml
|
|
test_environment:
|
|
rbac_engine:
|
|
replicas: 3
|
|
resources:
|
|
requests:
|
|
cpu: 2000m
|
|
memory: 8Gi
|
|
limits:
|
|
cpu: 4000m
|
|
memory: 12Gi
|
|
monitoring:
|
|
scrape_interval: 5s
|
|
metrics:
|
|
- role_resolution_latency
|
|
- permission_check_throughput
|
|
- memory_usage
|
|
- concurrent_sessions
|
|
```
|
|
|
|
## Deployment Steps
|
|
1. Provision infrastructure using Terraform
|
|
2. Deploy RBAC engine with test configuration
|
|
3. Setup monitoring stack
|
|
4. Deploy load generator
|
|
5. Validate environment connectivity |