Skip to content

ajanon/nats-operator

This branch is 13 commits behind canonical/nats-operator:main.

Folders and files

NameName
Last commit message
Last commit date
Mar 17, 2025
Oct 20, 2023
Mar 13, 2025
Nov 13, 2024
Sep 23, 2020
Nov 13, 2024
Feb 17, 2020
Sep 12, 2023
Feb 17, 2020
Sep 4, 2023
Oct 20, 2023
Sep 26, 2023
Jan 27, 2025
Mar 11, 2025
Feb 17, 2020
Nov 8, 2024
Mar 6, 2025
Mar 4, 2025

Repository files navigation

Charmed NATS Operator

Description

This repository contains a Juju Charm for deploying NATS on virtual machines (LXD). This charm provides a way to deploy a NATS core cluster.

Current features:

  • installation of nats-server via a snap (either from the store or a resource);
  • clustering with route URLs automatically added to the config of each unit;
  • debug options.
  • TLS support

Clustering Notes

  • NATS core does not have message persistence so leadership is not used for ordering of addition of units to the cluster - they come up as they are added and for a full mesh;
  • Route URLs are added to all other peers on each unit so that there is no dependency on a particular unit for discovering others;
  • Official NATS clients are multi-endpoint aware and will attempt to connect to a random NATS server and find the one that is alive so there is no need for a cluster virtual IP. Therefore, different NATS units can be in different subnets and are not tied to a shared L2 domain.

Usage

Basic Usage

To deploy a single unit of NATS using its default configuration

juju deploy <nats-charm-dir>

Deploy multiple units for a cluster

To deploy a cluster with multiple members

juju deploy <nats-charm-dir> -n 3

Enable Debug logs for NATS

juju config nats debug=true trace=true
juju ssh --unit nats/0
journalctl -f -u snap.nats.server.service

Integrations (Relations)

Supported relations:

nats interface:

The Charmed NATS Operator supports a nats interface to allow clients to connect to the NATS cluster.

provides:
      client:
          interface: nats

juju v2.x:

juju relate nats application

juju v3.x

juju integrate nats application

To remove a relation:

juju remove-relation nats application

tls-certificates interface:

The Charmed NATS Operator also supports TLS encryption on connections.

requires:
    ca-client:
        interface: tls-certificates

To enable TLS:

# Deploy the TLS Certificates Operator.
# The Vault charm implements the same interface.
juju deploy cs:~containers/easyrsa

juju relate nats easyrsa

Note: The CA certificate obtained via a relation to the CA charm will also be exposed for NATS charm clients.

nats-cluster interface:

The NATS charm has a peer relation to enable clustring for the NATS operator

peers:
    cluster:
        interface: nats-cluster

nrpe-external-master interface:

This charm can integrate with the LMA stack and can expose metrics for observability through this relation.

provides:
  nrpe-external-master:
      interface: nrpe-external-master
      scope: container

Security

Security issues in the NATS Operator can be reported through LaunchPad on the Anbox Cloud project. Please do not file GitHub issues about security issues.

Contributing

Please see the Juju SDK docs for guidelines on enhancements to this charm following best practice guidelines, and CONTRIBUTING.md for developer guidance.

License

The Charmed NATS Operator is distributed under the Apache Software License, version 2.0. It installs/operates/depends on NATS, which is licensed under Apache Software License, version 2.0 as well.

About

Charm for the NATs messaging server (https://nats.io/)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 97.4%
  • Shell 1.9%
  • Jinja 0.7%