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

feat: add consul discovery module #8380

Merged
merged 29 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d0d0d76
feat(discovery): add consul discovery
Nov 22, 2022
9e983a3
feat(discovery): add consul discovery
Nov 22, 2022
b052655
feat(discovery): add consul discovery
Nov 22, 2022
b80432e
feat(discovery): add consul discovery
Nov 22, 2022
e8258f1
feat(discovery): add consul discovery
Nov 22, 2022
c868e46
feat(discovery): add consul discovery
Nov 22, 2022
793a365
feat(discovery): add consul discovery
Nov 23, 2022
05c23fe
feat: add consul discovery module
Nov 23, 2022
c3aa851
feat: add consul discovery
Nov 23, 2022
8c89e09
feat: add consul discovery
Nov 23, 2022
cd9d9fc
feat: add consul discovery
Nov 23, 2022
9822bc4
feat: update unit test
Nov 24, 2022
e3e210b
feat: add consul register file
Nov 24, 2022
4e695b1
feat: fix ci error
Nov 24, 2022
3694305
feat: fix unit test error
Nov 24, 2022
abdc520
feat: corect variable name
Nov 24, 2022
5490ade
feat: fix ci error
Nov 25, 2022
f916d3e
feat: fix cr, add comment
Nov 25, 2022
0f73b77
feat: add heathycheck unit test
Nov 26, 2022
3f7fbaa
feat: fix ci error
Nov 29, 2022
5cdd92e
feat: fix code review
Nov 30, 2022
bff5d39
feat: fix code review
Nov 30, 2022
44cd5a4
feat: fix code review
Nov 30, 2022
99fd58a
feat: fix code review
Nov 30, 2022
2e5d391
feat: fix code review
Dec 1, 2022
d1b3562
Merge remote-tracking branch 'upstream/master' into feat/add_consul_d…
Dec 2, 2022
e1096db
Merge remote-tracking branch 'upstream/master' into feat/add_consul_d…
Dec 5, 2022
46bf152
feat: fix code review
Dec 5, 2022
115af5b
feat: fix code review
Dec 5, 2022
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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,9 @@ install: runtime

$(ENV_INSTALL) -d $(ENV_INST_LUADIR)/apisix/discovery
$(ENV_INSTALL) apisix/discovery/*.lua $(ENV_INST_LUADIR)/apisix/discovery/
$(ENV_INSTALL) -d $(ENV_INST_LUADIR)/apisix/discovery/{consul_kv,dns,eureka,nacos,kubernetes,tars}
$(ENV_INSTALL) -d $(ENV_INST_LUADIR)/apisix/discovery/{consul_kv,consul,dns,eureka,nacos,kubernetes,tars}
$(ENV_INSTALL) apisix/discovery/consul_kv/*.lua $(ENV_INST_LUADIR)/apisix/discovery/consul_kv
$(ENV_INSTALL) apisix/discovery/consul/*.lua $(ENV_INST_LUADIR)/apisix/discovery/consul
spacewander marked this conversation as resolved.
Show resolved Hide resolved
$(ENV_INSTALL) apisix/discovery/dns/*.lua $(ENV_INST_LUADIR)/apisix/discovery/dns
$(ENV_INSTALL) apisix/discovery/eureka/*.lua $(ENV_INST_LUADIR)/apisix/discovery/eureka
$(ENV_INSTALL) apisix/discovery/kubernetes/*.lua $(ENV_INST_LUADIR)/apisix/discovery/kubernetes
Expand Down
Loading