No results for ""
EXPAND ALL
  • Home
  • API docs

GIVE DOCS FEEDBACK

Configuring and deploying the Relay Proxy

Read time: 6 minutes
Last edited: Oct 12, 2023

Overview

This topic explains how to configure and deploy the Relay Proxy.

Configuring the Relay Proxy

After you have downloaded or built the Relay Proxy, you need to set its configuration options.

You can set these options by either:

  • using a configuration file, or
  • using environment variables.

If you are using Relay Proxy Enterprise, you can also use automatic configuration. To learn more, read Automatic configuration.

Relay Proxy metrics only appear when an SDK is connected

Some of the Relay Proxy configuration options enable you to export metrics, including the number of connections and requests. The Relay Proxy only exports metrics when an SDK is connected to it.

To learn more, read the Relay Proxy GitHub repository's Metrics integrations.

Expand each section below to learn how to configure the Relay Proxy.

Expand Using a configuration file

Using a configuration file

It's common to use a configuration file when you deploy the Relay Proxy from a release binary or build it from source.

You can also use a configuration file when you run the Relay Proxy from a Docker container, but it is less convenient to do because you must place the configuration file at /ldr/ld-relay.conf.

To learn more about the supported configuration options, read the Relay Proxy GitHub repository's Configuration docs. To learn about Relay Proxy logging level options, read Logging.

To use a configuration file:

  1. Create a new file:

    # A single environment which only proxies server-side SDKs
    [environment "Production"]
    sdkKey = "sdk-key-123abc"
  2. Run the Relay Proxy binary while passing an argument to identify your configuration file's location. The following example assumes that the configuration file is in your current directory and named ld-relay.conf, and that the ld-relay binary is in $GOPATH/bin.

    Run the following code:

    $GOPATH/bin/ld-relay --config ./ld-relay.conf

If you're using Relay Proxy Enterprise and want to enable automatic configuration or use it in offline mode, read Enabling automatic configuration or Enabling offline mode.

Expand Using environment variables

Using environment variables

The other way to configure your Relay Proxy is with environment variables. This method is available regardless of how you deploy the Relay Proxy, although it is most commonly used with Docker containers.

To learn more about supported environment variables, read the Relay Proxy GitHub repository's Configuration file format and environment variables. To learn about Relay Proxy logging level options, read Logging.

To use environment variables:

  1. Confirm that all of your Relay Proxy configuration values are specified with the appropriate environment variables.

    For example, to specify the SDK key for an environment named MyEnvName:

    export LD_ENV_MyEnvName=<sdk-key-123abc>
  2. Run the Relay Proxy binary while passing the --from-env argument. The following command assumes that the ld-relay binary is in $GOPATH/bin.

    $GOPATH/bin/ld-relay --from-env

If you're using Relay Proxy Enterprise and want to enable automatic configuration or use it in offline mode, read Enabling automatic configuration or Enabling offline mode.

Deploying the Relay Proxy

You can deploy the Relay Proxy in one of four ways. In order from most common to least common uses, the methods are:

  • starting the Relay Proxy from a Docker image,
  • using Helm to run the Relay Proxy in Kubernetes,
  • downloading a Relay Proxy standalone release binary, or
  • building within an existing Go app.

Expand the sections below to learn how to use each method.

Expand Starting the Relay Proxy from a Docker image

Starting the Relay Proxy from a Docker image

You can start the Relay Proxy from the launchdarkly/ld-relay image, which is available on Docker Hub.

To deploy the Relay Proxy with Docker:

  1. Use docker pull to pull the latest Relay Proxy Docker image:

    docker pull launchdarkly/ld-relay
  2. Use docker run to run the Relay Proxy from your Docker container while specifying your configuration details.

The simplest way to specify the configuration is with environment variables, using the -e option of docker run. An example configuration that uses environment variables appears below.

For examples and a full list of allowable variables, read the Relay Proxy GitHub repository's Using with Docker and Configuration.

In the following example, the Relay Proxy is configured to have two LaunchDarkly environments.

For the first environment, the SDK key is staging-sdk-key-123abc, and the environment name, for the purposes of logging, is Staging. For the second environment, the SDK key is prod-sdk-key-456def, and the environment name is Production.

In this example, the Relay Proxy is configured to listen on port 8030, which is its default port.

The example configuration follows:

docker run --name ld-relay \
-e LD_ENV_Staging="staging-sdk-key-123abc" \
-e LD_ENV_Prod="prod-sdk-key-456def" \
-p 8030:8030 \
-e PORT=8030 \
launchdarkly/ld-relay
Expand Using Helm to run the Relay Proxy in Kubernetes

Using Helm to run the Relay Proxy in Kubernetes

We maintain a Helm chart to ease Kubernetes-based Relay Proxy deployments.

To deploy the Relay Proxy using this Helm chart:

  1. Add the LaunchDarkly Relay Proxy Helm chart repository.

    helm repo add launchdarkly-ld-relay https://launchdarkly.github.io/ld-relay-helm
  2. Use helm install to install the chart archive and deploy the proxy into your cluster.

    The fastest way to configure installation is through Helm's --set flag. However, we recommend using files with the --values flag as this enables easier long term maintenance. In the examples below, replace MyEnvironment with the name of your Relay Proxy environment and sdk-key with your SDK key.

Here's how:

helm install relay --set relay.environment.LD_ENV_environment-key-123abc=sdk-key123bc launchdarkly-ld-relay/ld-relay

You can find examples and full documentation on all configuration options in the GitHub repository.

Expand Downloading a Relay Proxy standalone release binary

Downloading a Relay Proxy standalone release binary

You can download one of the Relay Proxy's most recent release binaries from our GitHub repository. This repository has all versions of the Relay Proxy releases with details about what each release improves or fixes. We recommend using the most recent release.

To learn more about Relay Proxy release binaries, visit the GitHub repository.

If you want to download a release binary from the GitHub repository, you should know the following things:

  • tar.gz files are executables. You can use these to run the Relay Proxy directly.
  • .deb and .rpm files are intended for use with a package manager.

When executing the binary, use either a configuration file or environment variables to set up your desired configuration.

For an example of running the binary with Windows, read the Relay Proxy GitHub repository's Building and running in Windows.

Expand Building within an existing Go app

Building within an existing Go app

To build the Relay Proxy from source:

  1. Install Go 1.20 or higher. To install Go, read Go's documentation.
  2. Check out the source code from the default branch of the repository: https://github.com/launchdarkly/ld-relay
  3. In the directory where you checked out the code, run go build .

The executable binary ld-relay appears in the directory.

There is also a shortcut command that can replace the longer procedure above. This command downloads the code and builds it in a single step. After you enter the command, the executable binary ld-relay appears in $GOPATH/bin. You can move it to any other location.

go install github.com/launchdarkly/ld-relay/v8@latest

When executing the binary, use either a configuration file or environment variables to set up your desired configuration.

To learn more, read the Relay Proxy GitHub repository's Building within an application.