Some checks are pending
Documentation Lint & Validation / Markdown Linting (push) Waiting to run
Documentation Lint & Validation / Validate mdBook Configuration (push) Waiting to run
Documentation Lint & Validation / Content & Structure Validation (push) Waiting to run
Documentation Lint & Validation / Lint & Validation Summary (push) Blocked by required conditions
mdBook Build & Deploy / Build mdBook (push) Waiting to run
mdBook Build & Deploy / Documentation Quality Check (push) Blocked by required conditions
mdBook Build & Deploy / Deploy to GitHub Pages (push) Blocked by required conditions
mdBook Build & Deploy / Notification (push) Blocked by required conditions
Rust CI / Security Audit (push) Waiting to run
Rust CI / Check + Test + Lint (nightly) (push) Waiting to run
Rust CI / Check + Test + Lint (stable) (push) Waiting to run
46 lines
823 B
YAML
46 lines
823 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: kagent-config
|
|
namespace: kagent
|
|
labels:
|
|
app: kagent
|
|
managed-by: vapora
|
|
data:
|
|
kagent.config.yaml: |
|
|
# Kagent Configuration
|
|
server:
|
|
host: 0.0.0.0
|
|
port: 8080
|
|
grpc_port: 50051
|
|
|
|
# A2A Protocol Integration with VAPORA
|
|
a2a:
|
|
enabled: true
|
|
vapora_server: "http://vapora-a2a:8003"
|
|
discover_interval: 30s
|
|
timeout: 30s
|
|
|
|
# Agent Discovery
|
|
discovery:
|
|
kubernetes:
|
|
enabled: true
|
|
namespace: "kagent"
|
|
label_selector: "agent=true"
|
|
|
|
# Logging
|
|
logging:
|
|
level: info
|
|
format: json
|
|
|
|
# Metrics
|
|
metrics:
|
|
enabled: true
|
|
port: 9090
|
|
|
|
# Resource Limits
|
|
resources:
|
|
max_concurrent_tasks: 100
|
|
task_timeout: 3600s
|
|
memory_limit: "2Gi"
|