A Grafana onboarding tool
Project description
gonb - A Grafana onboarding tool
Overview
Gonb enable continues provisioning and configuration of Grafana based on an IAM source system. This includes the lifecycle of organizations, users and teams.
Users should authenticate using some SSO provider, but gonb us the same SSO IAM system to configure users into different Grafana organizations and teams. Gonb should be run using some scheduling tool to keep user in sync with the users definition in the IAM source.
A typical patterns supported are:
- Map users in an IAM group to a corresponding organization.
- Map users in an IAM group into an organization and team
In the later use case gonb also provide the creation of folders that are specific to a team. This support the model where different teams have their own folder to create dashboards and alerts separated from other teams.
The user model in the IAM system must be mapped to the Grafana model. The model include the objects for organization, team and user where teams and users are linked to an organization.
Features
- Integration with different IAM solution using a provider pattern.
- Multiple providers could operate against same Grafana instance, but should not operate on the same organization.
- A user can belong to multiple organizations.
- Automatic add and remove of user from organization(s) based on the lifecycle in the IAM.
- Update users in Grafana if any attributes in the user's IAM "object" is changed, e.g. the role, email.
- Create organization if they do not exist in Grafana, default false.
- Automatic creation of team folder, folder with same name as team, if teams are created. Default folder permission for team is Editor.
- Team member lifecycle in the same way as for users in organization
- Manage permission for user with Grafana Admin (instance admin) rights. Default is false.
- Create folders and one level of subfolder. Top folders and subfolders can have different permissions for teams.
Argument passing
The only way to pass arguments to gonb is by environment variables. Each provider must define their own and required environment variables, and they must be exposed by the interface method:
def mandatory_env_vars(self) -> Dict[str, str]:
pass
For the grafana integration the following 3 must exist and have valid values, the rest are optional:
- GONB_GRAFANA_URL
- GONB_GRAFANA_USER
- GONB_GRAFANA_PASSWORD
- GONB_GRAFANA_CREATE_ORGS - Will create organization(s) if not exists, default
False
- GONB_GRAFANA_ADMINS - will manage users Grafana admin rights, default
False
- GONB_GRAFANA_MAIN_ORG - allow management of Grafana
Main Org.
, defaultFalse
- GONB_GRAFANA_TEAM_FOLDER - create team folder, default
True
- GONB_SSO_PROVIDER - specify if the provider is based on a IAM used for Grafana authentication, default
True
.
If
GONB_SSO_PROVIDER
is True there is some updating operations that are not done by gonb, e.g. update a user's name or email.
Develop a provider
A provider must implement the class gonb.provider.Provider
and implement the following methods:
def get_organisations(self) -> Dict[str, OrganizationDTO]:
def mandatory_env_vars(self) -> Dict[str, str]:
If not implemented a NotImplementedError
will be raised.
Please see examples in the directory json_gonb_provider
, json_team_gonb_provider
and okta_gonb_provider
.
Both these example providers are part of gonb pip package https://pypi.org/project/gonb.
Running gonb
There are two ways you can use gonb. The first is to use it as package and build a provider. The other way is to let gonb execute the provider. In this case the provider must be a python package and the following environment variables must be set before gonb is executed:
- GONB_PROVIDER_CLASS_PATH - the class name that is a subclass to
Provider
, e.g.json_gonb_provider.json_file.JSONFile
wherejson_gonb_provider.json_file
is the package part.
Gonb will dynamical load the module an instantiate the implemented Provider
class.
The second option enable building different providers as packages and use, e.g. pip to deploy dependency.
Of course, you can use both gonb and a provider as packages and build something totally new like web service that sync on external events.
Run the json provider example
The json file provider is just for testing.
git clone git@github.com:thenodon/gonb.git
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
export GONB_GRAFANA_PASSWORD=xyz
export GONB_GRAFANA_URL=http://localhost:3000
export GONB_GRAFANA_USER=admin
export GONB_JSON_FILE=json_file_example/users.json;
# Set to true if organizations should be created if not existing
export GONB_GRAFANA_CREATE_ORGS=true
cp json_file_example/users_add.json json_file_example/users.json
python -m json_gonb_provider
# check your Grafana for results
System requirements
- Python 3.8
- Grafana 9 - tested on 9.3.6
Important notes
- Password can be set by the provider, but should typical not since SSO would typical be used. The default is to set the password to a 30 character random string of a mix of characters, numbers and special characters.
- The GONB_GRAFANA_USER must be a Grafana instance admin.
- If the GONB_GRAFANA_USER do not exist in an organization that is to be managed, the user is added as an organization admin.
Future
- Support for Grafana Enterprise options for RBAC and team sync groups
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gonb-0.5.0.tar.gz
.
File metadata
- Download URL: gonb-0.5.0.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8ecba16187a4c75f752ef2a59e56e9a5089af0cf7ab9dc814af3325689e47f6 |
|
MD5 | 903ac79395adfa106497ce8e7c71fa16 |
|
BLAKE2b-256 | 37cdc86eceba9dd8f0db6814397b22619eea07abb573aade7a6bc402af849ad8 |
File details
Details for the file gonb-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: gonb-0.5.0-py3-none-any.whl
- Upload date:
- Size: 39.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e58de636d4a599f6dc895df457031a543e7a11fc6cebf4a24147a80fa7f4bc7 |
|
MD5 | 13455627692527a06c07365f30b65bed |
|
BLAKE2b-256 | ce617eaf099eb8544fb96b923d331c68f6c9c19e52a8fba528983cd68254394c |