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

dev(more-agents) More link agent for more dev nodes (required in ha migration integration tests) #269

Merged
merged 1 commit into from
Sep 13, 2024
Merged
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
34 changes: 34 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,40 @@ services:
command: reflex --all -r 'link' -s -- sh -c './link'
depends_on:
- etcd
link-4:
build: .
volumes:
- ./:/go/src/github.com/Scalingo/link
- ./_dev/go-cache:/root/.cache
cap_add:
- NET_ADMIN
network_mode: 'host'
env_file:
- .env
environment:
HOSTNAME: link-4
INTERFACE: eth13
PORT: 1316
command: reflex --all -r 'link' -s -- sh -c './link'
depends_on:
- etcd
link-5:
build: .
volumes:
- ./:/go/src/github.com/Scalingo/link
- ./_dev/go-cache:/root/.cache
cap_add:
- NET_ADMIN
network_mode: 'host'
env_file:
- .env
environment:
HOSTNAME: link-5
INTERFACE: eth14
PORT: 1317
command: reflex --all -r 'link' -s -- sh -c './link'
depends_on:
- etcd

test:
build: .
Expand Down