From c383ae3fa6ccb865575eacf78209fdd3ac7efa69 Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Mon, 28 Nov 2016 01:51:47 +0000 Subject: Create API and command to create a influxDB container JIRA: YARDSTICK-425 This API is used to create a influxDB Container Add command line to create a influxDB Container, too Change-Id: If9c2d04b779924d492a5d5ea91f7968fa959570e Signed-off-by: chenjiankun --- yardstick/common/constants.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'yardstick/common/constants.py') diff --git a/yardstick/common/constants.py b/yardstick/common/constants.py index 40b29a717..8fbc82f0e 100644 --- a/yardstick/common/constants.py +++ b/yardstick/common/constants.py @@ -1,3 +1,10 @@ CONFIG_SAMPLE = '/etc/yardstick/config.yaml' RELENG_DIR = 'releng.dir' + +DOCKER_URL = 'unix://var/run/docker.sock' + +# database config +USER = 'root' +PASSWORD = 'root' +DATABASE = 'yardstick' -- cgit 1.2.3-korg