Skip to content

Commit dfe9f3b

Browse files
committed
feat: add Kubernetes secrets template
1 parent 68b3f2e commit dfe9f3b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

k8s/secrets-template.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: v1
2+
kind: Secret
3+
metadata:
4+
name: rag-secrets
5+
namespace: rag-system
6+
type: Opaque
7+
stringData:
8+
# API Keys
9+
GROQ_API_KEY: "your-groq-api-key-here"
10+
11+
# Other Service Credentials
12+
HUGGINGFACE_API_KEY: "your-huggingface-api-key-here"
13+
14+
# Application Configuration
15+
ENVIRONMENT: "production"
16+
LOG_LEVEL: "INFO"
17+
18+
# Monitoring
19+
PROMETHEUS_TOKEN: "your-prometheus-token"
20+
GRAFANA_ADMIN_PASSWORD: "your-grafana-admin-password"

0 commit comments

Comments
 (0)