Install the Grey Matter CLI

This guide will help you install and set up the Grey Matter CLI.

The Grey Matter Command Line Interface (CLI) is a configuration tool for Grey Matter. Leveraging the Grey Matter Control API, the CLI mainly performs dynamic configuration of the Fabric mesh.

Prerequisites

To complete this tutorial, you’ll need an understanding of, and local access to the following environments and tools:

Step 1: Download and Install the greymatter CLI

The greymatter CLI is a binary written in Go. There are two ways to install it:

  1. use gmenv, a manager for installing and setting different greymatter versions

  2. download the binary manually from our release pages

We recommend using gmenv because it allows for easier versioning against different Grey Matter environments.

Option B: Install the greymatter binary manually

Retrieve the latest release directly or visit Grey Matter's Nexus Repository to browse all released versions of the CLI. When prompted, enter the username and password associated with your Grey Matter account.

Alternatively, any artifact in nexus can also be downloaded with a terminal. The below command demonstrates how to do this with curl. Before executing, replace -u user.name@organization.com with your username, and make sure the desired artifact is specified.

greymatter is distributed as a precompiled binary. Once you have downloaded the desired release, install it with the following steps:

  1. Unpack the tarball

    You will see the binaries:

  2. Move the greymatter binary for your operator onto your system's PATH with name greymatter:

Step 2: Test Installation

Run a quick test of the binary with the following command to verify a successful installation.

If you don't see this response, verify that the greymatter binary is on your PATH.

Step 3: Configure Your Environment for Grey Matter

Once the CLI has been downloaded and installed, it will need to be configured for your Grey Matter installation to communicate with the Grey Matter Control API. If you don't yet have an existing Grey Matter installation, get started with the Quickstart Installation Guide, and you will be able to configure the Grey Matter CLI and complete step 4 once it is up.

If you have an existing deployment running, configure the CLI by setting the following environment variables in your terminal. Note that as each deployment is different, the specific endpoint and security context will be different, so make sure to verify your settings against the deployed environment.

It is recommended to use an absolute path for your GREYMATTER_API_SSLCERT and GREYMATTER_API_SSLKEY variables.

NOTE: If you've used our quickstart guide - see the configure the CLI section for the specific configurations.

The full configuration and usage of the CLI can be found in the support pages or by running greymatter --help, but some quick examples are shown here.

Configuration options can also be set by CLI flags with each use. These flags will take precedence over the set environment variables.

Step 4: Test connection to the Grey Matter Control API

List Zone

Use greymatter list zone with the following keys and certs to connect to the Grey Matter Control API.

The returned Zone indicates that the connection was successful, and you've been able to inspect the Fabric Mesh. You can now interact with your Grey Matter installation using the CLI!

If you see a connection refused error, your configuration is likely wrong. Check the values you have configured by running greymatter with no command, the options configured from the environment will be listed at the bottom of the output.

Questions?

Last updated

Was this helpful?