1 # Copyright 2017 Intel Research and Development Ireland Limited
2 # *************************************************************
4 # This file is part of OSM Monitoring module
5 # All Rights Reserved to Intel Corporation
7 # Licensed under the Apache License, Version 2.0 (the "License"); you may
8 # not use this file except in compliance with the License. You may obtain
9 # a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16 # License for the specific language governing permissions and limitations
19 # For those usages not covered by the Apache License, Version 2.0 please
20 # contact: helena.mcgough@intel.com or adrian.hoban@intel.com
22 """Configurations for the OpenStack plugins."""
27 from collections
import namedtuple
29 from osm_mon
.plugins
.OpenStack
.singleton
import Singleton
33 __author__
= "Helena McGough"
35 log
= logging
.getLogger(__name__
)
38 class BadConfigError(Exception):
39 """Configuration exception."""
44 class CfgParam(namedtuple('CfgParam', ['key', 'default', 'data_type'])):
45 """Configuration parameter definition."""
47 def value(self
, data
):
48 """Convert a string to the parameter type."""
50 return self
.data_type(data
)
51 except (ValueError, TypeError):
53 'Invalid value "%s" for configuration parameter "%s"' % (
59 """Plugin confguration."""
62 CfgParam('OS_AUTH_URL', None, six
.text_type
),
63 CfgParam('OS_IDENTITY_API_VERSION', "3", six
.text_type
),
64 CfgParam('OS_USERNAME', None, six
.text_type
),
65 CfgParam('OS_PASSWORD', "password", six
.text_type
),
66 CfgParam('OS_TENANT_NAME', "service", six
.text_type
),
67 CfgParam('OS_NOTIFIER_URI', "http://localhost:8662", six
.text_type
),
70 _config_dict
= {cfg
.key
: cfg
for cfg
in _configuration
}
71 _config_keys
= _config_dict
.keys()
74 """Set the default values."""
75 for cfg
in self
._configuration
:
76 setattr(self
, cfg
.key
, cfg
.default
)
78 def read_environ(self
, service
):
79 """Check the appropriate environment variables and update defaults."""
80 for key
in self
._config
_keys
:
82 if key
== "OS_AUTH_URL":
83 val
= str(os
.environ
[key
]) + "/v3"
84 setattr(self
, key
, val
)
86 val
= str(os
.environ
[key
])
87 setattr(self
, key
, val
)
88 except KeyError as exc
:
89 log
.warn("Falied to configure plugin: %s", exc
)
90 log
.warn("Try re-authenticating your OpenStack deployment.")