File size: 1,308 Bytes
67d20c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# DataOps Connections and Credentials
# Managed by Atlas (Head of DataOps)
# Updated: $(date -u +%Y-%m-%dT%H:%M:%SZ)
qdrant:
host: qdrant.dbops.local
http_port: 17000
grpc_port: 17001
api_key: null
janusgraph:
gremlin_host: gremlin.dbops.local
gremlin_port: 17002
backend: scylladb
scylla:
hosts: ["10.0.10.11","10.0.10.12","10.0.10.13"]
port: 9042
keyspace: janusgraph
username: "scylla_user"
password: "scylla_pass"
redis_cluster:
nodes:
- host: redis-1.dbops.local
port: 18010
- host: redis-2.dbops.local
port: 18011
- host: redis-3.dbops.local
port: 18012
password: "torrent_cluster_auth"
dragonfly_cluster:
nodes:
- host: dragonfly-1.dbops.local
port: 18000
- host: dragonfly-2.dbops.local
port: 18001
- host: dragonfly-3.dbops.local
port: 18002
password: "torrent_cluster_auth"
nats:
url: nats://localhost:4222
user: null
pass: null
pulsar:
url: pulsar://localhost:6655
token: null
mlops:
training_url: http://localhost:3000/training
inference_url: http://localhost:3000/inference
# E-FIRE-1
efire:
orchestrator:
enabled: true
agents:
api_developer: { enabled: true }
content_creator: { enabled: true }
scylla_user: ${SCYLLA_USER}
scylla_pass: ${SCYLLA_PASS}
|