aboutsummaryrefslogtreecommitdiffstats
path: root/domino_conf.py
diff options
context:
space:
mode:
authorUlas Kozat <ulas.kozat@gmail.com>2016-05-20 14:42:39 -0700
committerUlas Kozat <ulas.kozat@gmail.com>2016-05-20 14:42:39 -0700
commit57a23f93ae803640517206de67f33f2fc442ca4c (patch)
treec486d8385cfa1fba2144c82ce43623e36acb770f /domino_conf.py
parent7893dd02c15f2a727eb50887c9ddb829fc71f556 (diff)
added features: logger, exception handling, CLI changes, move constants to domino_conf.py; fixed bug: packing UDID generated as UINT64 by the random number generator to INT64
Change-Id: Id79e79050d1a1011d3548bb4445792354e7b63d0 Signed-off-by: Ulas Kozat <ulas.kozat@gmail.com>
Diffstat (limited to 'domino_conf.py')
-rw-r--r--domino_conf.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/domino_conf.py b/domino_conf.py
new file mode 100644
index 0000000..3ce442b
--- /dev/null
+++ b/domino_conf.py
@@ -0,0 +1,18 @@
+logfile = None
+
+#Client Parameters
+CLIENT_UDID = 1
+CLIENT_SEQNO = 0
+
+DOMINO_SERVER_IP = 'localhost'
+DOMINO_SERVER_PORT = 9090
+
+UDID_DESIRED = 12467
+LIST_SUPPORTED_TEMPLATES = ['tosca-nfv-v1.0']
+DEFAULT_TOSCA_PUBFILE = './tosca-templates/tosca_helloworld_nfv.yaml'
+
+#Server Parameters
+SERVER_UDID = 0
+TOSCADIR = './toscafiles/'
+TOSCA_DEFAULT_FNAME = 'template1.yaml'
+SERVER_DBFILE = 'dominoserver.json'