Add Kubernetes/K3s deployment manifests and documentation
- Complete k8s manifests with Kustomize support - Production and staging overlays - ConfigMap/Secret management - Ingress with TLS (Traefik/NGINX) - Persistent storage for SQLite - Comprehensive k8s README with operations guide - Updated main README with k8s deployment instructions - Gitignore for k8s secrets Usage: kubectl apply -k k8s/overlays/production
This commit is contained in:
12
k8s/overlays/production/secrets.example.yaml
Normal file
12
k8s/overlays/production/secrets.example.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: dyn-ddns-secrets
|
||||
type: Opaque
|
||||
stringData:
|
||||
# Replace with your actual Technitium API token
|
||||
TECHNITIUM_TOKEN: "your-production-api-token-here"
|
||||
|
||||
# Or use username/password (not recommended for production)
|
||||
# TECHNITIUM_USERNAME: "admin"
|
||||
# TECHNITIUM_PASSWORD: "your-password"
|
||||
Reference in New Issue
Block a user