- Add comprehensive database migrations (001-024) for schema evolution - Enhance API schema with expanded type definitions and resolvers - Add new middleware: audit logging, rate limiting, MFA enforcement, security, tenant auth - Implement new services: AI optimization, billing, blockchain, compliance, marketplace - Add adapter layer for cloud integrations (Cloudflare, Kubernetes, Proxmox, storage) - Update Crossplane provider with enhanced VM management capabilities - Add comprehensive test suite for API endpoints and services - Update frontend components with improved GraphQL subscriptions and real-time updates - Enhance security configurations and headers (CSP, CORS, etc.) - Update documentation and configuration files - Add new CI/CD workflows and validation scripts - Implement design system improvements and UI enhancements
56 lines
1.2 KiB
Markdown
56 lines
1.2 KiB
Markdown
# DNS Configuration for Proxmox Instances
|
|
|
|
## Quick Start
|
|
|
|
### Using Automated Script
|
|
|
|
```bash
|
|
export CLOUDFLARE_ZONE_ID="your-zone-id"
|
|
export CLOUDFLARE_API_TOKEN="your-api-token"
|
|
./scripts/setup-dns-records.sh
|
|
```
|
|
|
|
### Using Terraform
|
|
|
|
```bash
|
|
cd cloudflare/terraform
|
|
terraform init
|
|
terraform plan
|
|
terraform apply
|
|
```
|
|
|
|
### Using Local /etc/hosts (Testing)
|
|
|
|
```bash
|
|
sudo cat scripts/hosts-entries.txt >> /etc/hosts
|
|
```
|
|
|
|
## DNS Records
|
|
|
|
### Required Records
|
|
|
|
**Instance 1 (ML110-01):**
|
|
- `ml110-01.sankofa.nexus` → 192.168.11.10
|
|
- `ml110-01-api.sankofa.nexus` → ml110-01.sankofa.nexus
|
|
- `ml110-01-metrics.sankofa.nexus` → ml110-01.sankofa.nexus
|
|
|
|
**Instance 2 (R630-01):**
|
|
- `r630-01.sankofa.nexus` → 192.168.11.11
|
|
- `r630-01-api.sankofa.nexus` → r630-01.sankofa.nexus
|
|
- `r630-01-metrics.sankofa.nexus` → r630-01.sankofa.nexus
|
|
|
|
## Verification
|
|
|
|
```bash
|
|
# Test resolution
|
|
dig ml110-01.sankofa.nexus +short
|
|
dig r630-01.sankofa.nexus +short
|
|
|
|
# Test connectivity
|
|
curl -k https://ml110-01.sankofa.nexus:8006/api2/json/version
|
|
curl -k https://r630-01.sankofa.nexus:8006/api2/json/version
|
|
```
|
|
|
|
For detailed documentation, see [DNS Configuration Guide](../../docs/proxmox/DNS_CONFIGURATION.md).
|
|
|