added netbox topology plugin

This commit is contained in:
hakasapl 2022-07-05 12:15:59 -04:00
parent 61a3afbb3b
commit b6c53fa09e
3 changed files with 6 additions and 1 deletions

4
Dockerfile-Plugins Normal file
View file

@ -0,0 +1,4 @@
FROM netboxcommunity/netbox:latest
COPY ./plugin_requirements.txt /
RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /plugin_requirements.txt

View file

@ -192,7 +192,7 @@ NAPALM_ARGS = {}
PAGINATE_COUNT = int(environ.get('PAGINATE_COUNT', 50)) PAGINATE_COUNT = int(environ.get('PAGINATE_COUNT', 50))
# Enable installed plugins. Add the name of each plugin to the list. # Enable installed plugins. Add the name of each plugin to the list.
PLUGINS = [] PLUGINS = [ "netbox_topology_views" ]
# Plugins configuration settings. These settings are used by various plugins that the user may have installed. # Plugins configuration settings. These settings are used by various plugins that the user may have installed.
# Each key in the dictionary is the name of an installed plugin and its value is a dictionary of settings. # Each key in the dictionary is the name of an installed plugin and its value is a dictionary of settings.

1
plugin_requirements.txt Normal file
View file

@ -0,0 +1 @@
netbox-topology-views