Netbox Initializers Plugin
Load data from YAML files into Netbox
Installation
First activate your virtual environment where Netbox is installed, the install the plugin version correspondig to your Netbox version.
pip install "netbox-initializers==4.3.*"
Then you need to add the plugin to the PLUGINS array in the Netbox configuration.
PLUGINS = [
netbox_initializers ,
]
Getting started
At first you need to start with writing the YAML files that contain the initial data. To make that easier the plugin includes example files for all supported initializers. To access those examples you can copy them into a directory of your choosing and edit them there. To copy the files run the following command (in your Netbox directory):
./manage.py copy_initializers_examples --path /path/for/example/files
After you filled in the data you want to import, the import can be started with this command:
./manage.py load_initializer_data --path /path/for/example/files
Netbox Docker image
The initiali
|