summaryrefslogtreecommitdiffstats
path: root/cyborg_enhancement/mitaka_version/cyborg/cyborg/conf/default.py
diff options
context:
space:
mode:
Diffstat (limited to 'cyborg_enhancement/mitaka_version/cyborg/cyborg/conf/default.py')
-rw-r--r--cyborg_enhancement/mitaka_version/cyborg/cyborg/conf/default.py69
1 files changed, 69 insertions, 0 deletions
diff --git a/cyborg_enhancement/mitaka_version/cyborg/cyborg/conf/default.py b/cyborg_enhancement/mitaka_version/cyborg/cyborg/conf/default.py
new file mode 100644
index 0000000..bd5e0fd
--- /dev/null
+++ b/cyborg_enhancement/mitaka_version/cyborg/cyborg/conf/default.py
@@ -0,0 +1,69 @@
+# Copyright 2017 Huawei Technologies Co.,LTD.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+import os
+import socket
+
+from oslo_config import cfg
+
+from cyborg.common.i18n import _
+
+
+exc_log_opts = [
+ cfg.BoolOpt('fatal_exception_format_errors',
+ default=False,
+ help=_('Used if there is a formatting error when generating '
+ 'an exception message (a programming error). If True, '
+ 'raise an exception; if False, use the unformatted '
+ 'message.')),
+]
+
+service_opts = [
+ #cfg.HostAddressOpt('host',
+ cfg.StrOpt('host',
+ default=socket.getfqdn(),
+ sample_default='localhost',
+ help=_('Name of this node. This can be an opaque '
+ 'identifier. It is not necessarily a hostname, '
+ 'FQDN, or IP address. However, the node name '
+ 'must be valid within an AMQP key, and if using '
+ 'ZeroMQ, a valid hostname, FQDN, or IP address.')
+ ),
+ cfg.IntOpt('periodic_interval',
+ default=60,
+ help=_('Default interval (in seconds) for running periodic '
+ 'tasks.')),
+]
+
+path_opts = [
+ cfg.StrOpt('pybasedir',
+ default=os.path.abspath(
+ os.path.join(os.path.dirname(__file__), '../')),
+ sample_default='/usr/lib/python/site-packages/cyborg/cyborg',
+ help=_('Directory where the cyborg python module is '
+ 'installed.')),
+ cfg.StrOpt('bindir',
+ default='$pybasedir/bin',
+ help=_('Directory where cyborg binaries are installed.')),
+ cfg.StrOpt('state_path',
+ default='$pybasedir',
+ help=_("Top-level directory for maintaining cyborg's state.")),
+]
+
+
+def register_opts(conf):
+ conf.register_opts(exc_log_opts)
+ conf.register_opts(service_opts)
+ conf.register_opts(path_opts)