A Kubernetes operator for managing decentralized authentication & authorization for NATS
NAuth allows platform teams to provide easy multi-tenancy support for development teams by providing Account & User CRD:s that conveniently packages:
- Account creation & updates
- Account exports & imports
- User creation & credentials delivery
Note
This project is still in early and active development. There will likely be breaking changes before getting to a stable release.
NAuth supports installation through packaged Helm charts.
helm install nauth oci://ghcr.io/wirelesscar/nauth --create-namespace --namespace nauth
A nauth-crds chart is also available for installing CRDs separately, which works
alongside the main chart with crds.install=false.
NAuth requires NATS to be installed in the cluster, since NAuth integrates with NATS (over NATS) to provide the account JWT:s. See examples of how to setup NATS with JWT auth together with NAuth in the examples directory.
Important
Nauth requires the system account user credentials and the operator signing key nkey seed to be provided as a k8s secret with the proper labels.
- nauth.io/secret-type: system-account-user-creds
- nauth.io/secret-type: operator-sign
You can see a full operator example setup here.
Running a large NATS cluster requires that the operator is secured properly. If you do not already have an operator, try out the operator-bootstrap utility which comes with NAuth.
You can also use nsc directly to create a throw-away operator & system account.
Check out this video for a comprehensive description on how decentralized JWT Auth works. In order to work with NAuth, it's important to have an understanding of how the basics work.
Use this to "observe" an account that already exists in the NATS cluster. NAuth will fetch the JWT from NATS and update the account status, but it will never push a new JWT.
- Account root seed secret labeled:
account.nauth.io/id=$ACCOUNT_PUBKEY,nauth.io/secret-type=account-rootandnauth.io/managed=true. - Account signing seed secret labeled:
account.nauth.io/id=$ACCOUNT_PUBKEY,nauth.io/secret-type=account-signandnauth.io/managed=true.
apiVersion: nauth.io/v1alpha1
kind: Account
metadata:
name: my-acc
labels:
account.nauth.io/id: $ACCOUNT_PUBKEY
nauth.io/management-policy: observe # observe-onlyNote: the System Account required by NAuth itself can only be observed and reconciliation of such an Account CRD without
nauth.io/management-policy: observe label will fail.
Check out the CONTRIBUTING guide.
