Redis cluster (with KeyDB)
In this example, we'll deploy KeyDB Cluster and Redis Insight.
We'll also add a load balancer (HAProxy) to distribute traffic between both KeyDB. Services will be able to connect to this load balancer, which will be highly available.
1. Create KeyDB cluster + Redis Insight
Remember to fill in the “username” and “hashed_password” variables below:.
environmentVariables:
- key: USERNAME
value: ""
- key: HASHED_PASSWORD
value: ""
isSensitive: true
To generate HASHED_PASSWORD variable:
openssl passwd -6 superadminpassword
From Import Service feature:, copy and past:
services:
- type: classic
id: redisnode1
name: Redis Node 1
dockerConfiguration:
image: eqalpha/keydb
imageVersion: "alpine_x86_64_v6.3.4"
args:
- keydb-server
- --active-replica yes
- --multi-master yes
- --replicaof 127.0.0.1 6382
countMin: 1
countMax: 1
cpuLimit: 512
memoryLimitMiB: 512
ports:
- listeningPort: 6379
healthCheck:
healthCheckEnabled: false
links:
- toServiceId: redisnode2
toServicePort: 6379
localExposedPort: 6382
variableHost: REDIS2_HOST
variablePort: REDIS2_PORT
variableAddress: REDIS2_ADDR
- type: classic
id: redisnode2
name: Redis Node 2
dockerConfiguration:
image: eqalpha/keydb
imageVersion: "alpine_x86_64_v6.3.4"
args:
- keydb-server
- --active-replica yes
- --multi-master yes
- --replicaof 127.0.0.1 6381
countMin: 1
countMax: 1
cpuLimit: 512
memoryLimitMiB: 512
ports:
- listeningPort: 6379
healthCheck:
healthCheckEnabled: false
links:
- toServiceId: redisnode1
toServicePort: 6379
localExposedPort: 6381
variableHost: REDIS1_HOST
variablePort: REDIS1_PORT
variableAddress: REDIS1_ADDR
- type: classic
id: redisinsight
name: Redis Insight
dockerConfiguration:
image: oblakstudio/redisinsight
imageVersion: "3.1"
ports:
- listeningPort: 5540
healthCheck:
healthCheckEnabled: false
links:
- toServiceId: redisnode1
toServicePort: 6379
localExposedPort: 6379
variableHost: REDIS1_HOST
variablePort: REDIS1_PORT
variableAddress: REDIS1_ADDR
- toServiceId: redisnode2
toServicePort: 6379
localExposedPort: 6380
variableHost: REDIS2_HOST
variablePort: REDIS2_PORT
variableAddress: REDIS2_ADDR
cpuLimit: 512
memoryLimitMiB: 512
- type: classic
id: nginx
name: Nginx
dockerConfiguration:
image: nginx
imageVersion: "1.27.4-alpine"
ports:
- listeningPort: 80
healthCheck:
healthCheckEnabled: false
loadBalancerRules:
- publicPort: 443
environmentVariables:
- key: USERNAME
value: "admin"
- key: HASHED_PASSWORD
value: "$6$HT57wGbj6XQT52f9$yNgkicUfNUr/Nci7yFsyboj.IM6DQDfrnhYqaPb9254pFkFM3mnewXrKLGZcNWsyCUZXFl8L6sAev/cPj/bok0" # CHANGE ME !
isSensitive: true
links:
- toServiceId: redisinsight
toServicePort: 5540
localExposedPort: 5540
variableHost: REDIS_INSIGHT_HOST
variablePort: REDIS_INSIGHT_PORT
variableAddress: REDIS_INSIGHT_ADDR
files:
- content: |
server {
listen 80;
location / {
proxy_pass http://%REDIS_INSIGHT_ADDR%;
auth_basic "Restricted Content";
auth_basic_user_file /etc/nginx/.htpasswd;
}
}
path: /etc/nginx/conf.d/default.conf
perms: "444"
interpolate: true
- content: |
%USERNAME%:%HASHED_PASSWORD%
path: /etc/nginx/.htpasswd
perms: "444"
interpolate: true