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

PMM-5194 Tunnels #1459

Closed
wants to merge 1 commit into from
Closed
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
12 changes: 8 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[submodule "pmm"]
path = sources/pmm/src/github.com/percona/pmm
url = https://github.com/percona/pmm
branch = PMM-2.0
branch = PMM-5194-tunnels


# PMM Client

[submodule "pmm-admin"]
path = sources/pmm-admin/src/github.com/percona/pmm-admin
url = https://github.com/percona/pmm-admin.git
branch = master
branch = PMM-5194-tunnels
[submodule "pmm-agent"]
path = sources/pmm-agent/src/github.com/percona/pmm-agent
url = https://github.com/percona/pmm-agent.git
branch = master
branch = PMM-5194-tunnels
[submodule "node_exporter"]
path = sources/node_exporter/src/github.com/prometheus/node_exporter
url = https://github.com/percona/node_exporter.git
Expand Down Expand Up @@ -53,7 +53,7 @@
[submodule "pmm-managed"]
path = sources/pmm-managed/src/github.com/percona/pmm-managed
url = https://github.com/percona/pmm-managed
branch = PMM-2.0
branch = PMM-5194-tunnels
[submodule "dbaas-controller"]
path = sources/dbaas-controller/src/github.com/percona-platform/dbaas-controller
url = https://github.com/percona-platform/dbaas-controller
Expand All @@ -63,6 +63,10 @@
path = sources/qan-api2/src/github.com/percona/qan-api2
url = https://github.com/percona/qan-api2
branch = master
[submodule "qan-app"]
path = sources/qan-app/src/github.com/percona/qan-app
url = https://github.com/percona/qan-app
branch = PMM-2.0
[submodule "pmm-update"]
path = sources/pmm-update/src/github.com/percona/pmm-update
url = https://github.com/percona/pmm-update
Expand Down
2 changes: 1 addition & 1 deletion sources/pmm-admin/src/github.com/percona/pmm-admin
Submodule pmm-admin updated 30 files
+6 −4 .travis.yml
+5 −4 Gopkg.lock
+2 −1 Gopkg.toml
+30 −8 agentlocal/agentlocal.go
+1 −1 commands/inventory/add_agent_external_exporter.go
+0 −98 commands/inventory/add_service_haproxy.go
+0 −49 commands/inventory/add_service_haproxy_test.go
+0 −8 commands/inventory/list_services.go
+113 −0 commands/inventory/list_tunnels.go
+5 −33 commands/list.go
+10 −10 commands/list_test.go
+29 −32 commands/management/add_external.go
+21 −24 commands/management/add_external_serverless.go
+0 −145 commands/management/add_haproxy.go
+0 −41 commands/management/add_haproxy_test.go
+1 −2 commands/management/management.go
+31 −1 commands/status.go
+2 −2 main.go
+33 −1 vendor/github.com/percona/pmm/api/agentlocalpb/json/client/agent_local/status2_responses.go
+74 −1 vendor/github.com/percona/pmm/api/agentlocalpb/json/client/agent_local/status_responses.go
+5 −0 vendor/github.com/percona/pmm/api/inventorypb/json/client/pmm_inventory_client.go
+131 −0 vendor/github.com/percona/pmm/api/inventorypb/json/client/tunnels/add_tunnel_parameters.go
+302 −0 vendor/github.com/percona/pmm/api/inventorypb/json/client/tunnels/add_tunnel_responses.go
+131 −0 vendor/github.com/percona/pmm/api/inventorypb/json/client/tunnels/list_tunnels_parameters.go
+335 −0 vendor/github.com/percona/pmm/api/inventorypb/json/client/tunnels/list_tunnels_responses.go
+131 −0 vendor/github.com/percona/pmm/api/inventorypb/json/client/tunnels/remove_tunnel_parameters.go
+223 −0 vendor/github.com/percona/pmm/api/inventorypb/json/client/tunnels/remove_tunnel_responses.go
+139 −0 vendor/github.com/percona/pmm/api/inventorypb/json/client/tunnels/tunnels_client.go
+0 −3 vendor/github.com/percona/pmm/api/managementpb/json/client/external/add_external_responses.go
+0 −3 vendor/github.com/percona/pmm/api/managementpb/json/client/ha_proxy/add_ha_proxy_responses.go
2 changes: 1 addition & 1 deletion sources/pmm-agent/src/github.com/percona/pmm-agent
Submodule pmm-agent updated 38 files
+3 −1 .travis.yml
+8 −4 Gopkg.lock
+2 −1 Gopkg.toml
+1 −0 actions/concurrent_runner.go
+6 −11 agentlocal/agent_local.go
+50 −33 agentlocal/agent_local_test.go
+7 −0 agentlocal/deps.go
+29 −0 agentlocal/mock_registry_test.go
+12 −2 client/channel/channel.go
+32 −5 client/client.go
+19 −10 client/client_test.go
+12 −1 client/deps.go
+8 −5 client/mock_connection_checker_test.go
+50 −0 client/mock_registry_test.go
+34 −21 commands/run.go
+3 −6 connectionchecker/connection_checker.go
+6 −6 connectionchecker/connection_checker_test.go
+2 −1 main_test.go
+1 −0 packages.dot
+264 −0 tunnels/conn/conn.go
+161 −0 tunnels/conn/conn_test.go
+162 −0 tunnels/registry.go
+62 −0 tunnels/tunnels.go
+194 −80 vendor/github.com/percona/pmm/api/agentlocalpb/agentlocal.pb.go
+10 −0 vendor/github.com/percona/pmm/api/agentlocalpb/agentlocal.validator.pb.go
+33 −1 vendor/github.com/percona/pmm/api/agentlocalpb/json/client/agent_local/status2_responses.go
+74 −1 vendor/github.com/percona/pmm/api/agentlocalpb/json/client/agent_local/status_responses.go
+31 −9 vendor/github.com/percona/pmm/api/agentpb/agent.go
+973 −600 vendor/github.com/percona/pmm/api/agentpb/agent.pb.go
+58 −0 vendor/github.com/percona/pmm/api/agentpb/agent.validator.pb.go
+805 −0 vendor/github.com/percona/pmm/api/inventorypb/tunnels.pb.go
+331 −0 vendor/github.com/percona/pmm/api/inventorypb/tunnels.pb.gw.go
+68 −0 vendor/github.com/percona/pmm/api/inventorypb/tunnels.validator.pb.go
+464 −0 vendor/golang.org/x/net/nettest/conntest.go
+347 −0 vendor/golang.org/x/net/nettest/nettest.go
+11 −0 vendor/golang.org/x/net/nettest/nettest_stub.go
+21 −0 vendor/golang.org/x/net/nettest/nettest_unix.go
+26 −0 vendor/golang.org/x/net/nettest/nettest_windows.go
2 changes: 1 addition & 1 deletion sources/pmm/src/github.com/percona/pmm