-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from nautobot/develop
Release v.0.9.8
- Loading branch information
Showing
5 changed files
with
14 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Default owners for all files in this repository | ||
* @itdependsnetworks | ||
* @itdependsnetworks @jeffkala |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
"""Plugin declaration for nautobot_golden_config.""" | ||
|
||
__version__ = "0.9.7" | ||
__version__ = "0.9.8" | ||
|
||
from nautobot.extras.plugins import PluginConfig | ||
|
||
|
@@ -15,19 +15,15 @@ class GoldenConfig(PluginConfig): | |
author_email = "[email protected]" | ||
description = "A plugin for managing Golden Configurations." | ||
base_url = "golden-config" | ||
required_settings = [] | ||
# min_version = "0" | ||
# max_version = "100" | ||
default_settings = { | ||
"enable_backup": True, | ||
"enable_golden": True, | ||
"enable_compliance": True, | ||
"enable_intended": True, | ||
"enable_sotagg": True, | ||
"per_feature_bar_width": 0.3, | ||
"per_feature_width": 13, | ||
"per_feature_height": 4, | ||
"per_feature_bar_width": 0.3, | ||
} | ||
caching_config = {} | ||
|
||
|
||
config = GoldenConfig # pylint:disable=invalid-name |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nautobot-golden-config" | ||
version = "0.9.7" | ||
version = "0.9.8" | ||
description = "A plugin for configuration on nautobot" | ||
authors = ["Network to Code, LLC", "<[email protected]>"] | ||
|
||
|