Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inventory-provider
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
geant-swd
dashboardv3
inventory-provider
Commits
4c4a64c1
Commit
4c4a64c1
authored
2 years ago
by
geant-release-service
Browse files
Options
Downloads
Plain Diff
Finished release 0.98.
parents
277c1dc7
60c670a5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Changelog.md
+3
-0
3 additions, 0 deletions
Changelog.md
LICENSE.txt
+21
-0
21 additions, 0 deletions
LICENSE.txt
inventory_provider/config.py
+1
-1
1 addition, 1 deletion
inventory_provider/config.py
setup.py
+14
-1
14 additions, 1 deletion
setup.py
with
39 additions
and
2 deletions
Changelog.md
+
3
−
0
View file @
4c4a64c1
...
...
@@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## [0.98] - 2022-10-17
-
POL1-624: Changed GWS Direct config to support GTT as ISP
## [0.97] - 2022-09-26
-
DBOARD3-643: Added contact info
...
...
This diff is collapsed.
Click to expand it.
LICENSE.txt
0 → 100644
+
21
−
0
View file @
4c4a64c1
MIT License
Copyright (c) 2022 GÉANT Vereniging
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
inventory_provider/config.py
+
1
−
1
View file @
4c4a64c1
...
...
@@ -163,7 +163,7 @@ CONFIG_SCHEMA = {
'
nren
'
:
{
'
type
'
:
'
string
'
},
'
isp
'
:
{
'
type
'
:
'
string
'
,
'
enum
'
:
[
'
Cogent
'
,
'
Telia
'
,
'
CenturyLink
'
]
'
enum
'
:
[
'
Cogent
'
,
'
Telia
'
,
'
CenturyLink
'
,
'
GTT
'
]
},
'
hosts
'
:
{
'
type
'
:
'
array
'
,
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
14
−
1
View file @
4c4a64c1
...
...
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup
(
name
=
'
inventory-provider
'
,
version
=
"
0.9
7
"
,
version
=
"
0.9
8
"
,
author
=
'
GEANT
'
,
author_email
=
'
swd@geant.org
'
,
description
=
'
Dashboard inventory provider
'
,
...
...
@@ -33,4 +33,17 @@ setup(
]
},
include_package_data
=
True
,
license
=
'
MIT
'
,
license_files
=
(
'
LICENSE.txt
'
,),
classifiers
=
[
'
Programming Language :: Python :: 3
'
,
'
Programming Language :: Python :: 3.6
'
,
'
Programming Language :: Python :: 3.7
'
,
'
Programming Language :: Python :: 3.8
'
,
'
Programming Language :: Python :: 3.9
'
,
'
License :: OSI Approved :: MIT License
'
,
'
Operating System :: OS Independent
'
,
'
Development Status :: 5 - Production/Stable
'
],
python_requires
=
'
>=3.6
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment