Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update haproxy config to use port 6379 for redis #342

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions modules/proc_deploy_quay_ha_lbdb.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ backend be_rdgw
server ceph02 ceph02:7480 check
server ceph03 ceph03:7480 check
backend be_redis
server quay01 quay01:6380 check inter 1s
server quay02 quay02:6380 check inter 1s
server quay03 quay03:6380 check inter 1s
server quay01 quay01:6379 check inter 1s
server quay02 quay02:6379 check inter 1s
server quay03 quay03:6379 check inter 1s
```

+
Expand Down
2 changes: 1 addition & 1 deletion resources/haproxy_cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ backend be_redis
tcp-check expect string role:master
tcp-check send QUIT\r\n
tcp-check expect string +OK
server redis_{{item}} {{item}}:6380 check inter 1s
server redis_{{item}} {{item}}:6379 check inter 1s
2 changes: 1 addition & 1 deletion resources/quaylab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
detach: yes
restart_policy: always
ports:
- "6380:6379"
- "6379:6379"

- name: Ensure root has a .docker directory
file:
Expand Down