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
**Note:** the sensor does not support HTTPS but this could be accomplished by fronting the sensor with Nginx/Apache/etc, which would terminate the SSL connection and then proxy the request to the sensor over HTTP.
65
+
66
+
# How to update the pack
67
+
68
+
The pack is auto generated from the NetBox OpenAPI (Swagger) spec file. To update the pack, follow these steps:
69
+
70
+
1. Create a virtual environment and install the required dependencies:
71
+
```shell
72
+
virtualenv -p python3 venv
73
+
source venv/bin/activate
74
+
pip install -r requirements.txt
75
+
```
76
+
77
+
2. Change to `bin` directory and run the `generate.py` script:
78
+
```shell
79
+
cd bin
80
+
python generate.py --url https://demo.netbox.dev
81
+
```
82
+
83
+
3. Update the `CHANGES.md` file with the new version of NetBox that was used to generate the pack.
84
+
4. Update the `pack.yaml` file with the new version of NetBox that was used to generate the pack.
85
+
5. Commit the changes and create a pull request.
86
+
6. Once the pull request is merged, a new version of the pack will be released to the StackStorm Exchange.
87
+
88
+
## Maintainers
89
+
90
+
Active pack maintainers with review & write repository access and expertise with Netbox:
91
+
92
+
- John Anderson <lampwins@gmail.com>@lampwins
93
+
- Abhimanyu Saharan <asaharan@onemindservices.com>@abhi1693
0 commit comments