-
-
Notifications
You must be signed in to change notification settings - Fork 917
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1252 from cimnine/principals
PRINCIPALS.md and MAINTAINERS.md
- Loading branch information
Showing
3 changed files
with
108 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Maintainers of _NetBox Docker_ | ||
|
||
This file lists all currently recognized maintainers of the _NetBox Docker_ project in alphabetical order: | ||
|
||
- @cimnine | ||
- @tobiasge | ||
|
||
## Stepping Down | ||
|
||
Every maintainer is a volunteer and may step down as maintainer at any time without providing any reason. | ||
To make this explicit, the maintainer is asked to update this file. | ||
|
||
The last maintainer stepping down is asked to archive the project on GitHub to indicate that the project is no longer maintained. | ||
|
||
## Signing up | ||
|
||
Everyone is welcome to sign up as maintainer by creating a PR and add their own username to the list. | ||
The current maintainers shall discuss the application. | ||
They may turn down an application if they don't feel confident that the new maintainer is a positive addition. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Development, Maintenance and Community Principals for _NetBox Docker_ | ||
|
||
These principals shall guide the development and the maintenance of _NetBox Docker_. | ||
|
||
## Basic principals | ||
|
||
This project is maintained on voluntary basis. | ||
Everyone is asked to respect that. | ||
|
||
This means, that … | ||
|
||
- … sometimes features are not implemented as fast as one might like -- or not at all. | ||
- … sometimes nobody is looking at bugs, or they are not fixed as fast as one might like -- or not at all. | ||
- … sometimes PRs are not reviewed for an extended period. | ||
|
||
Everyone is welcome to provide improvements and bugfixes to the benefit of everyone else. | ||
|
||
## Development Principals | ||
|
||
The goal of the _NetBox Docker_ project is to provide a container to run the basic NetBox project. | ||
The container should feel like a native container -- as if it were provided by NetBox itself: | ||
|
||
- Configuration via environment variables where feasible. | ||
- Except: Whenever a complex type such as a `dict` is required as value of a configuration setting, | ||
then it shall not be provided through an environment variable. | ||
- Configuration of secrets via secret files. | ||
- Log output to standard out (STDOUT/`&1`) / standard error (STDERR/`&2`). | ||
- Volumes for data and cache directories. | ||
- Otherwise, no mounts shall be necessary. | ||
- Runs a non-root user by default. | ||
- One process / role for each instance. | ||
|
||
The container generally does not provide more features than the basic NetBox project itself provides. | ||
It may provide additional Python dependencies than the upstream project, | ||
so that all configurable features of NetBox can be used in the container without further modification. | ||
The container may provide helpers, so that it feels and behaves like a native container. | ||
|
||
The container does not bundle any community plugins. | ||
|
||
## Maintenance Principals | ||
|
||
The main goals of maintaining _NetBox Docker_ are: | ||
|
||
- Keeping the project at a high quality level. | ||
- Keeping the maintenance effort minimal. | ||
- Coordinating development efforts. | ||
|
||
The following guidelines help us to achieve these goals: | ||
|
||
- As many maintenance tasks as possible shall be automated or scripted. | ||
- All manual tasks must be documented. | ||
- All changes are reviewed by at least one maintainer. | ||
- Changes of maintainers are reviewed by at least one other maintainer. | ||
(Except if there's only one maintainer left.) | ||
- The infrastructure beyond what GitHub provides shall be kept to a minimum. | ||
- On request, every maintainer shall get access to infrastructure that is beyond GitHub | ||
(at the time of writing that's _Docker Hub_ and _Quay_ in particular). | ||
|
||
## Community Principals | ||
|
||
This project is developed by the NetBox community for the NetBox community. | ||
We welcome contributions, as long as they are in line with the principals above. | ||
|
||
The maintainers of NetBox Docker are not the support team. | ||
The community is expected to help each other out. | ||
|
||
Always remember: | ||
Behind every screen (or screen-reader) on the other end is a fellow human. | ||
Be nice and respectful, thankful for help, | ||
and value ideas and contributions, | ||
even when they don't fit the goals. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters