Performance Management Dashboard With growing adoption of service meshes in cloud native environments, service mesh abstractions and service mesh-neutral specifications have emerged. Service Mesh Performance and Service Mesh Interface are two open specifications that address the need for universal interfaces for interacting with and managing any type of service mesh. What do each of these specification provide?

Service Mesh Performance standardizes service mesh value measurement, characterizing any deployment’s performance by capturing the details of infrastructure capacity, service mesh configuration and workload metadata.

Service Mesh Interface provides a standard interface for service meshes on Kubernetes. These (currently) four specfications offer a common denominator set of interfaces to support most common service mesh use cases and the flexibility to evolve to support new service mesh capabilities over time.

As a service mesh agnostic tool that provides lifecycle and performance management of a large number of (10+) service meshes, Kubernetes applications, service mesh patterns and WebAssembly filters, Meshery is the ideal tool for the job when it comes to implementing these specifications.

Meshery also comes with two new GitHub Actions make it easy to integrate SMI and SMP into your GitHub workflows. The Meshery SMI Conformance Action validates the adherance of your service mesh deployment against SMI’s spcdifications using a standard set of conformance tests. Output of conformance tests are presented on the SMI Conformance Dashboard(https://meshery.io/service-mesh-interface). The Meshery SMP Action integrates into your application pipeline, performing SMP compatible performance benchmarks within your environment and in accordance with your load requirements and service mesh configuration.

Let’s take a closer look at each of these Actions.

Service Mesh Interface Conformance GitHub Action

Conformance of SMI specifications is defined as a series of test assertions. These test assertions are categorised by SMI specification (of which, there are currently four specifications) and comprise the complete suite of SMI conformance tests. Conformance requirements will change appropriately as each new version of the SMI spec is released. Refer to Meshery’s documentation for details of how Meshery performs SMI conformance.

Using Meshery’s SMI Conformance GitHub Action

The Service Mesh Interface Conformance GitHub Action is available in the GitHub Marketplace. You can configure this action to trigger with each of your releases, on every pull request. or any GitHub workflow trigger event.

An example of the action configuration which runs on every release is shown below. The action handles setting up a Kubernetes environment, deploying the service mesh (see supported service meshes), running the conformance tests and reporting back the results to the SMI Conformance dashboard in Meshery.

jobs: smi-conformance: name: SMI Conformance runs-on: ubuntu-latest steps:

   - name: SMI conformance tests
     uses: layer5io/mesheryctl-smi-conformance-action@master
     with:
       provider_token: ${{ secrets.MESHERY_PROVIDER_TOKEN }}
       service_mesh: open_service_mesh
       mesh_deployed: false

You can also bring in your own cluster with specific capabilities and with a service mesh already installed.

jobs: smi-conformance: name: SMI Conformance tests on master runs-on: ubuntu-latest steps:

  - name: Deploy k8s-minikube
    uses: manusa/actions-setup-minikube@v2.4.1
    with:
      minikube version: 'v1.21.0'
      kubernetes version: 'v1.20.7'
      driver: docker

  - name: Install OSM
    run: |
       curl -LO https://github.com/openservicemesh/
       osm/releases/download/v0.9.1/osm-v0.9.1-linux-amd64.tar.gz
       tar -xzf osm-v0.9.1-linux-amd64.tar.gz
       mkdir -p ~/osm/bin
       mv ./linux-amd64/osm ~/osm/bin/osm-bin
       PATH="$PATH:$HOME/osm/bin/"
       osm-bin install --osm-namespace default

  - name: SMI conformance tests
    uses: layer5io/mesheryctl-smi-conformance-action@master
    with:
      provider_token: ${{ secrets.MESHERY_PROVIDER_TOKEN }}
      service_mesh: open_service_mesh
      mesh_deployed: true

You can download a token from Meshery and add it as a GitHub secret (in the example above, the secret is MESHERY_PROVIDER_TOKEN). After the test is run, you can view the results from the Service Mesh Interface dashboard in Meshery UI.

SMI Conformance Dashboard

Participating service mesh projects can also automatically report their conformance test results to the SMI Conformance dashboard.

Service Mesh Performance GitHub Action

Measuring and managing the performance of a service mesh is key to efficient operation of any service mesh. Meshery is the canonical implementation of the Service Mesh Performance specification. You can choose from multiple load generators and use a highly configurable set of load profiles with variable tunable facets to run a performance test. Meshery packages all these features into an easy-to-use GitHub Action.

Using Meshery’s Service Mesh Performance GitHub Action

The Service Mesh Performance GitHub Action is available in the GitHub Marketplace.You can create your own performance profiles to run repeatable tests with Meshery. You can configure this action to trigger with each of your releases, on every pull request. or any GitHub workflow trigger event. A sample configuration of the action is shown below.

jobs: performance-test: name: Performance Test runs-on: ubuntu-latest steps: - name: checkout uses: actions/checkout@v2 with: ref: ‘perf’

  - name: Deploy k8s-minikube
    uses: manusa/actions-setup-minikube@v2.4.1
    with:
      minikube version: 'v1.21.0'
      kubernetes version: 'v1.20.7'
      driver: docker

  - name: Run Performance Test
    uses: layer5io/meshery-smp-action@master
    with:
      provider_token: ${{ secrets.PROVIDER_TOKEN }}
      platform: docker
      profile_name: soak-test

You can also define your test configuration in an SMP compatible configuration file as shown below.

See this sample GitHub workflow (action.yml) for more configuration details.

Performance Management Dashboard

The results from the tests are updated on the Performance Management dashboard in Meshery. To learn more about interpreting the test results, check out this guide. You can always checkout the Meshery User Guides to dive deep into these features.