Skip to content
Snippets Groups Projects
Commit aee4f076 authored by Erik Reid's avatar Erik Reid
Browse files

simplified tmp settings

parent 34b01c87
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,9 @@ ...@@ -2,7 +2,9 @@
"GENERAL": { "GENERAL": {
"public_hostname": "https://gap.geant.org" "public_hostname": "https://gap.geant.org"
}, },
"RESOURCE_MANAGER_API_PREFIX": "http://localhost:44444", "RESOURCE_MANAGEMENT": {
"todo": "todo"
},
"IPAM": { "IPAM": {
"INFOBLOX": { "INFOBLOX": {
"scheme": "https", "scheme": "https",
......
...@@ -75,12 +75,17 @@ class ProvisioningProxyParams(BaseSettings): ...@@ -75,12 +75,17 @@ class ProvisioningProxyParams(BaseSettings):
api_version: int api_version: int
class ResourceManagementParams(BaseSettings):
"""TO DO: resource management parameters"""
todo: str
class OSSParams(BaseSettings): class OSSParams(BaseSettings):
"""The set of parameters required for running GSO.""" """The set of parameters required for running GSO."""
GENERAL: GeneralParams GENERAL: GeneralParams
IPAM: IPAMParams IPAM: IPAMParams
RESOURCE_MANAGER_API_PREFIX: str RESOURCE_MANAGEMENT: ResourceManagementParams
PROVISIONING_PROXY: ProvisioningProxyParams PROVISIONING_PROXY: ProvisioningProxyParams
......
...@@ -14,7 +14,9 @@ def configuration_data() -> dict: ...@@ -14,7 +14,9 @@ def configuration_data() -> dict:
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
yield { yield {
"GENERAL": {"public_hostname": "https://gap.geant.org"}, "GENERAL": {"public_hostname": "https://gap.geant.org"},
"RESOURCE_MANAGER_API_PREFIX": "http://localhost:44444", "RESOURCE_MANAGEMENT": {
'todo': 'todo'
},
"IPAM": { "IPAM": {
"INFOBLOX": { "INFOBLOX": {
"scheme": "https", "scheme": "https",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment