Upload production/k8s/secret.yml
Browse files- production/k8s/secret.yml +14 -0
production/k8s/secret.yml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
apiVersion: v1
|
| 2 |
+
kind: Secret
|
| 3 |
+
metadata:
|
| 4 |
+
name: ml-intern-secrets
|
| 5 |
+
namespace: ml-intern
|
| 6 |
+
type: Opaque
|
| 7 |
+
stringData:
|
| 8 |
+
HF_TOKEN: ""
|
| 9 |
+
ANTHROPIC_API_KEY: ""
|
| 10 |
+
OPENAI_API_KEY: ""
|
| 11 |
+
GROQ_API_KEY: ""
|
| 12 |
+
NVIDIA_API_KEY: ""
|
| 13 |
+
DATABASE_URL: "postgresql://ml_intern:ml_intern@postgres:5432/ml_intern"
|
| 14 |
+
REDIS_URL: "redis://redis:6379"
|