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

Export tikv status port in CI #8021

Merged
merged 6 commits into from
Aug 25, 2023
Merged
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ libs/libtiflash-proxy
tmp/

tests/fullstack-test2/auto_gen
tests/docker/data
tests/docker/log

CoverageReport

Expand Down
2 changes: 2 additions & 0 deletions tests/docker/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ services:
command:
- --addr=0.0.0.0:20160
- --advertise-addr=tikv0:20160
- --status-addr=0.0.0.0:20180
- --advertise-status-addr=tikv0:20180
- --pd=pd0:2379
- --config=/tikv.toml
- --data-dir=/data
Expand Down
2 changes: 2 additions & 0 deletions tests/docker/cluster_disable_new_collation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ services:
command:
- --addr=0.0.0.0:20160
- --advertise-addr=tikv0:20160
- --status-addr=0.0.0.0:20180
- --advertise-status-addr=tikv0:20180
- --pd=pd0:2379
- --config=/tikv.toml
- --data-dir=/data
Expand Down
2 changes: 2 additions & 0 deletions tests/docker/cluster_new_collation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ services:
command:
- --addr=0.0.0.0:20160
- --advertise-addr=tikv0:20160
- --status-addr=0.0.0.0:20180
- --advertise-status-addr=tikv0:20180
- --pd=pd0:2379
- --config=/tikv.toml
- --data-dir=/data
Expand Down
2 changes: 2 additions & 0 deletions tests/docker/cluster_tidb_fail_point.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ services:
command:
- --addr=0.0.0.0:20160
- --advertise-addr=tikv0:20160
- --status-addr=0.0.0.0:20180
- --advertise-status-addr=tikv0:20180
- --pd=pd0:2379
- --config=/tikv.toml
- --data-dir=/data
Expand Down
Empty file modified tests/docker/run.sh
100644 → 100755
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

file permission is changed, is this as expected?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, chmod u+x for it

Empty file.