Initial commit: LLM Automation Docs & Remediation Engine v2.0
Features: - Automated datacenter documentation generation - MCP integration for device connectivity - Auto-remediation engine with safety checks - Multi-factor reliability scoring (0-100%) - Human feedback learning loop - Pattern recognition and continuous improvement - Agentic chat support with AI - API for ticket resolution - Frontend React with Material-UI - CI/CD pipelines (GitLab + Gitea) - Docker & Kubernetes deployment - Complete documentation and guides v2.0 Highlights: - Auto-remediation with write operations (disabled by default) - Reliability calculator with 4-factor scoring - Human feedback system for continuous learning - Pattern-based progressive automation - Approval workflow for critical actions - Full audit trail and rollback capability
This commit is contained in:
32
deploy/kubernetes/secrets-template.yaml
Normal file
32
deploy/kubernetes/secrets-template.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
# Template for Kubernetes Secrets
|
||||
# IMPORTANT: Do not commit this file with real values!
|
||||
# Create actual secret with:
|
||||
# kubectl create secret generic datacenter-secrets \
|
||||
# --from-literal=mongodb-url='mongodb://admin:password@mongodb:27017' \
|
||||
# --from-literal=mongodb-root-user='admin' \
|
||||
# --from-literal=mongodb-root-password='secure_password' \
|
||||
# --from-literal=redis-url='redis://:password@redis:6379/0' \
|
||||
# --from-literal=mcp-api-key='your-mcp-key' \
|
||||
# --from-literal=anthropic-api-key='sk-ant-api03-xxx' \
|
||||
# -n datacenter-docs
|
||||
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: datacenter-secrets
|
||||
namespace: datacenter-docs
|
||||
type: Opaque
|
||||
stringData:
|
||||
# MongoDB
|
||||
mongodb-url: "mongodb://admin:CHANGE_ME@mongodb:27017"
|
||||
mongodb-root-user: "admin"
|
||||
mongodb-root-password: "CHANGE_ME"
|
||||
|
||||
# Redis
|
||||
redis-url: "redis://:CHANGE_ME@redis:6379/0"
|
||||
|
||||
# MCP Server
|
||||
mcp-api-key: "CHANGE_ME"
|
||||
|
||||
# Anthropic Claude
|
||||
anthropic-api-key: "sk-ant-api03-CHANGE_ME"
|
||||
Reference in New Issue
Block a user