You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/netbox-enterprise/nbe-ec-custom-plugins.md
+19-2
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,10 @@ While NetBox Enterprise comes with a variety of certified and other community pl
4
4
5
5
To do so, you will need to create a tarball containing the plugins you wish to install, known as a wheelhouse archive.
6
6
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
+
7
11
## Create a working directory
8
12
9
13
First, create a temporary directory for your plugin downloads to go:
@@ -16,13 +20,18 @@ mkdir /tmp/wheelhouse
16
20
17
21
Create a file called `requirements.txt` in your `/tmp/wheelhouse` directory, listing each of the plugins you'd like to include.
18
22
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
+
19
26
## Dowload the `constraints.txt` file for your release
20
27
21
28
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.
22
29
23
30
To do so, download it with this command:
24
31
25
32
```{.bash}
33
+
sudo ./netbox-enterprise shell
34
+
26
35
NBE_SOURCE_POD="$( \
27
36
kubectl get pods -A \
28
37
-o go-template='{{ range .items }}{{ .metadata.name }}{{ "\n" }}{{ end }}' \
@@ -72,6 +81,8 @@ Both are configured to be able to accept wheelhouse uploads.
72
81
To do so, run this:
73
82
74
83
```{.bash}
84
+
sudo ./netbox-enterprise shell
85
+
75
86
NBE_SOURCE_POD="$( \
76
87
kubectl get pods -A \
77
88
-o go-template='{{ range .items }}{{ .metadata.name }}{{ "\n" }}{{ end }}' \
0 commit comments