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
Fix netbox feature tests job failure in Netbox 4.3 (#115)
* Update feature-test.yml
* Implement this change from v4.3 The device and virtual_machine foreign keys on the Service model have been replaced with a generic parent relationship to support the assignment of services to FHRP groups as well.
* Fix optional association
* Fix object check hopefully
* Attempt to make services model type lookup more generic
* implement changelog: The group foreign key on the Contact model has been replaced with a many-to-many groups field.
* Fix contacts
* Cleanup services change get to filter test
* Change filter back to get
* More cleanup
* Revert feature test workflow change
* Remove quotes from services parent_type yaml
* Update netbox 4.2 references to 4.3
* Update readme
* Attempt to fix lint errors
* Enable lint workflow for test
* Disable lint check
* Enable manual run of tests
* Remove manual run of tests
* Reenable manual lint test run
* Final cleanup
* Fix pylint error
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Load data from YAML files into Netbox
7
7
First activate your virtual environment where Netbox is installed, the install the plugin version correspondig to your Netbox version.
8
8
9
9
```bash
10
-
pip install "netbox-initializers==4.2.*"
10
+
pip install "netbox-initializers==4.3.*"
11
11
```
12
12
13
13
Then you need to add the plugin to the `PLUGINS` array in the Netbox configuration.
@@ -38,6 +38,6 @@ The initializers where a part of the Docker image and where then extracted into
38
38
To use the new plugin in a the Netbox Docker image, it musst be installad into the image. To this, the following example can be used as a starting point:
39
39
40
40
```dockerfile
41
-
FROM netboxcommunity/netbox:v4.2
42
-
RUN /opt/netbox/venv/bin/pip install "netbox-initializers==4.2.*"
41
+
FROM netboxcommunity/netbox:v4.3
42
+
RUN /opt/netbox/venv/bin/pip install "netbox-initializers==4.3.*"
0 commit comments