Skip to content

Commit 587805e

Browse files
authored
Merge pull request #108 from netboxlabs/docs/ENG-3595_python_plugin_install_docs
docs: clarifications and improvements to plugin docs
2 parents bab5151 + 8539e45 commit 587805e

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

docs/netbox-enterprise/nbe-ec-custom-plugins.md

+19-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ While NetBox Enterprise comes with a variety of certified and other community pl
44

55
To do so, you will need to create a tarball containing the plugins you wish to install, known as a wheelhouse archive.
66

7+
!!! note
8+
On each startup, the wheelhouse's contents will be applied to a fresh NetBox Python environment.
9+
Also, you will need to create a new wheelhouse archive when the NetBox version provided in the NetBox Enterprise environment changes.
10+
711
## Create a working directory
812

913
First, create a temporary directory for your plugin downloads to go:
@@ -16,13 +20,18 @@ mkdir /tmp/wheelhouse
1620

1721
Create a file called `requirements.txt` in your `/tmp/wheelhouse` directory, listing each of the plugins you'd like to include.
1822

23+
For details on the format of requirements files, please see the [pip documentation](https://pip.pypa.io/en/stable/reference/requirements-file-format/).
24+
However, it is strongly recommended that you use `==` to include a specific known and tested version in your requirements file.
25+
1926
## Dowload the `constraints.txt` file for your release
2027

2128
You can use `kubectl cp` to download a constraints file that contains a complete list of the pre-installed Python modules in your NetBox Enterprise version.
2229

2330
To do so, download it with this command:
2431

2532
```{.bash}
33+
sudo ./netbox-enterprise shell
34+
2635
NBE_SOURCE_POD="$( \
2736
kubectl get pods -A \
2837
-o go-template='{{ range .items }}{{ .metadata.name }}{{ "\n" }}{{ end }}' \
@@ -72,6 +81,8 @@ Both are configured to be able to accept wheelhouse uploads.
7281
To do so, run this:
7382

7483
```{.bash}
84+
sudo ./netbox-enterprise shell
85+
7586
NBE_SOURCE_POD="$( \
7687
kubectl get pods -A \
7788
-o go-template='{{ range .items }}{{ .metadata.name }}{{ "\n" }}{{ end }}' \
@@ -84,9 +95,15 @@ kubectl cp -n kotsadm \
8495
"${NBE_SOURCE_POD}:/opt/netbox/netbox/media/wheelhouse.tar.gz"
8596
```
8697

98+
## Enable and Configure Your Plugins
99+
100+
In the Admin Console configuration, make sure _Show Advanced Settings_ is checked.
101+
In the Python configuration overrides box, you can enter `PLUGINS = [...]` and `PLUGINS_CONFIG = {}` just as you would for any NetBox install.
102+
For details, see the [NetBox plugin documentation](https://netboxlabs.com/docs/netbox/en/stable/configuration/plugins/).
103+
87104
## Restart the NetBox containers
88105

89-
The next time the NetBox pods restart, they should automatically apply your changes.
106+
The next time the NetBox pods restart, your changes should be automatically applied.
90107

91108
If you are in restore mode, switching out of restore mode will enable installation of your plugins.
92-
If you are not, a "redeploy" in the admin console should do the same.
109+
If you are not, a "redeploy" in the admin console will trigger the same.

0 commit comments

Comments
 (0)