-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into feat/nb37
# Conflicts: # CHANGES.md # pack.yaml
- Loading branch information
Showing
5 changed files
with
63 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, users and | ||
# teams which are put in owners will be requested for review | ||
# when someone opens a pull request. | ||
|
||
# This is base configuration. These owners could review all | ||
# files in this repository. | ||
* @lampwins @abhi1693 @StackStorm-Exchange/tsc | ||
|
||
# CI configuration files should be reviewed by specific owners | ||
# who are more responsible for ensuring the quality of this pack | ||
# or orchestrate StackStorm-Exchanges. | ||
.circleci/** @StackStorm-Exchange/tsc | ||
.github/** @StackStorm-Exchange/tsc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,3 +62,32 @@ http://<ip-address>:<port>/netbox/webhooks/ | |
``` | ||
**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. | ||
# How to update the pack | ||
The pack is auto generated from the NetBox OpenAPI (Swagger) spec file. To update the pack, follow these steps: | ||
1. Create a virtual environment and install the required dependencies: | ||
```shell | ||
virtualenv -p python3 venv | ||
source venv/bin/activate | ||
pip install -r requirements.txt | ||
``` | ||
|
||
2. Change to `bin` directory and run the `generate.py` script: | ||
```shell | ||
cd bin | ||
python generate.py --url https://demo.netbox.dev | ||
``` | ||
|
||
3. Update the `CHANGES.md` file with the new version of NetBox that was used to generate the pack. | ||
4. Update the `pack.yaml` file with the new version of NetBox that was used to generate the pack. | ||
5. Commit the changes and create a pull request. | ||
6. Once the pull request is merged, a new version of the pack will be released to the StackStorm Exchange. | ||
|
||
## Maintainers | ||
|
||
Active pack maintainers with review & write repository access and expertise with Netbox: | ||
|
||
- John Anderson <[email protected]> @lampwins | ||
- Abhimanyu Saharan <[email protected]> @abhi1693 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,10 @@ keywords: | |
- networking | ||
- ipam | ||
- dcim | ||
version: 3.3.0 | ||
author: John Anderson, Jefferson White | ||
email: [email protected] | ||
version: 3.4.0 | ||
python_versions: | ||
- "3" | ||
author: John Anderson, Jefferson White | ||
email: [email protected] | ||
contributors: | ||
- Abhimanyu Saharan <[email protected]> |