-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.yml
36 lines (27 loc) · 816 Bytes
/
config.yml
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
# The MySQL Database for instances info
database:
user: root
password: toor
host: localhost:3306
dbname: getaredis
# The Redis Server for service discovery
redisAddress: "localhost:6379"
redisPassword: "<Some Random String>"
# Docker Daemon Authentication
docker:
user: docker
password: "<Some Random String>"
# Digitalocean API token for autoscaling
digitalOceanToken: "<Digitalocean Token>"
# An SSH key for newly created droplets
dropletSSHKeyID: XXXX
# The redis instances maximum memory in MB
maxInstanceSize: 5
# Maximum number of simultinous connections to a redis instance
maxRedisConnections: 5
# The number of hours to keep an instance alive
maxInstanceTime: 12
# Maximum number of instances per IP
maxInstancesPerIP: 6
# Maximum number of containers per Host
maxContainersPerHost: 40