docs/static/v0.5/extensibility/adapters/index.html
Adapters allow Meshery to interface with the different service meshes. Review the list of all available service mesh adapters. See the Meshery Architecture diagrams for visuals on how adapters relate to other Meshery components.
Meshery upholds the following guiding principles for adapter design:
Meshery communicates with adapters over grpc. Adapters establish communication with the service mesh. Adapters have a predefined set of operations which are grouped based on predefined operation types.
The predefined operation types are:
Common libraries are used to avoid code duplication and apply DRY.
The code hierarchy is pluggable and independent from one another. There can be N number of packages depending upon the use case.
errors/ - holds the implementations and the error handlers and error codes which are used across projects.logger/ - holds the implementations of logging handler and custom attributes to add if any.utils/ - holds all the utility functions that are specific to meshery projects and are to be used generically across all of them.tracing/ - holds the implementations of tracing handlers with different tracing providers like jaeger,newrelic, etc.Each package inside a meshkit is a handler interface implementation, the implementation could be from any third-party packages or the go-kit.
This section contains a high level overview of the meshery-adapter-library, its purpose and architecture. For details, the reader is referred to the documentation and the code in the repository.
The main purpose of the meshery-adapter-library is to:
The library consists of interfaces and default implementations for the main and common functionality of an adapter. It also provides a mini-framework that runs the gRPC adapter service, calling the functions of handlers injected by the adapter code. This is represented in an UML-ish style in the figure below. The library is used in all of Meshery’s adapters.
With the CONTRIBUTING.md in mind, understand that development follows the usual fork-and-pull request workflow described here, see also GitHub Process. On forking GitHub deactivates all workflows. It is safe and good practice to activate them such that the code is validated on each push. This requires that branches filter for “on push” is set to ‘**’ to be triggered also on branches containing ‘/’ in their name. The actions are parameterized using secrets (see Build & Release Strategy). The Docker image is only built and pushed to Docker Hub if a tag is pushed and the corresponding authentication information is configured. The only secret that should be set in each fork is GO_VERSION, specified in Build & Release Strategy, otherwise, the corresponding action’s default version is used.
Each commit has to be signed off, see Contributing Overview.
Testing your local changes running as a container can be accomplished in two ways:
make docker followed by make docker-run. Then, connect to the adapter in the UI in “Settings>Service Meshes” using localhost:<port> if the meshery server is running as a binary, or : if it is running as a docker container.~/.meshery/meshery.yaml, change the tag specifying the image of the adapter to “latest”. Run make docker, followed by mesheryctl system start --skip-update. This assumes mesheryctl system start has been executed at least once before.Another way to test your local changes is to run the adapter as a process. To do this, clone the meshery/meshery repository, and start Meshery Server using make server. Start the adapter from your IDE, or by executing make run. Then, in Meshery UI, add the adapter using “localhost:”.
Meshery uses adapters to manage and interact with different service meshes. Meshery adapters are written in Go. Whether you are creating a new adapter or modifying an existing adapter, be sure to read the Meshery Adapters design specification. For new adapters, start with the Repository Template(https://github.com/layer5io/layer5-repo-template).
Get the proto buf spec file from Meshery repo: wget https://raw.githubusercontent.com/meshery/meshery/master/meshes/meshops.proto
Generate code
Using Go as an example, do the following:
- adding GOPATH to PATH: export PATH=$PATH:$GOPATH/bin
- install grpc: go get -u google.golang.org/grpc
- install protoc plugin for go: go get -u github.com/golang/protobuf/protoc-gen-go
- Generate Go code: protoc -I meshes/ meshes/meshops.proto --go_out=plugins=grpc:./meshes/
For other languages, please refer to gRPC.io for language-specific guides.
Implement the service methods and expose the gRPC server on a port of your choice (e.g. 10000).
Tip: The Meshery Adapter for Istio is a good reference adapter to use as an example of a Meshery Adapter.