Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

nginxinc/nginx-ns1-gslb

Project Status: Abandoned – Initial development has started, but there has not yet been a stable, usable release; the project has been abandoned and the author(s) do not intend on continuing development.

This repository has been archived!

The ns1-gslb repository has been archived and is no longer maintained. The latest release can be found on GitHub at 0.1.1 Release.

All issues in this repo are frozen. If you have any questions please reach out to us at integrations@nginx.com or on the NGINX Community Slack

NGINX Plus - NS1 Global Server Load Balancing

CI FOSSA Status Go Report Card

nginx-ns1-gslb allows NGINX Plus to connect with NS1 API to use NS1 managed DNS to create a Global Server Load Balancing solution that load balances connections or requests across two or more distinct data centers or points of presence (PoPs).

Prerequisites

  • At least 1 working instance of NGINX Plus reachable from the host where you are running this agent
  • NS1 API credentials

Configuration

The configuration of the agent is managed by a YAML file. Check the configuration readme for more information.

The agent will try to open the file and configure itself, there might be 2 problems when doing this:

  • The file can't be opened (due to a bad path or file permissions)
  • The file is opened but the data can't be used (errors or missing required parameters)

Both cases will make the agent fail to start with an error to describe the problem.

Running the agent

Locally (using Go >= 1.11)

go run cmd/agent/main.go --config-file <path/to/your_file.yaml>

This will run an Agent that fetches stats from one or more NGINX Plus instances, and updates the remote NS1 feeds.

Docker

You can either build the Docker image yourself, or use the official Docker image.

Build the Docker image

  1. Build the image specifying the config file:

    make CONFIG_FILE=<path/to/your_file.yaml> container

    Note: By default the binary is built locally, if you need to build it inside a container append TARGET=container to the command above.

  2. Run the container:

    docker run nginx/nginx-ns1-gslb:<version>

Pull the Docker image

  1. Alternatively, you can pull the image from GitHub Container Registry:

    docker pull ghcr.io/nginxinc/nginx-ns1-gslb:0.1.1

  2. Run the container:

    docker run -v <path/to/your_file.yaml>:/etc/nginx-ns1-gslb/config.yaml ghcr.io/nginxinc/nginx-ns1-gslb:0.1.1

    Note: By default the Docker image contains an example config, so you need to mount you configuration file like shown in the command above -v <path/to/your_file.yaml>:/etc/nginx-ns1-gslb/config.yaml.

Note

Consider the following while running the agent:

  • All NGINX Plus instances must be reachable and running when the agent is run for the first time.
  • While running, if at least 1 Instance of NGINX Plus is working, the agent will use the data from that one.
  • While running, if all NGINX Plus instances are off, the agent will send {up: false} to NS1 API for all the configured services.

Tests

Run make test to run the tests.