summaryrefslogtreecommitdiffstats
path: root/mgr/docker/createobj.sql
diff options
context:
space:
mode:
authorShashank Kumar Shankar <shashank.kumar.shankar@intel.com>2017-09-05 15:52:48 -0700
committerShashank Kumar Shankar <shashank.kumar.shankar@intel.com>2017-09-06 15:43:58 -0700
commitd816d444383c73862535c89483c01e0d125a722c (patch)
tree29217fce57467df58742a792b5d66cb17629fbb6 /mgr/docker/createobj.sql
parentdff6a11d425677eec5909d2cdab9cc1c277719c7 (diff)
Add GVNFM VNFMGR Docker image and build scripts
This patch adds the scripts and Dockerfile for building GVNFM/VNFGR docker image. Change-Id: I4642228523691095ff77cd5fa0007d853e93b7d5 Issue-Id: VFC-282 Signed-off-by: Shashank Kumar Shankar <shashank.kumar.shankar@intel.com>
Diffstat (limited to 'mgr/docker/createobj.sql')
-rw-r--r--mgr/docker/createobj.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/mgr/docker/createobj.sql b/mgr/docker/createobj.sql
new file mode 100644
index 0000000..71beee1
--- /dev/null
+++ b/mgr/docker/createobj.sql
@@ -0,0 +1,12 @@
+use gvnfm;
+
+CREATE TABLE `VNF_REG` (
+ `ID` varchar(200) NOT NULL PRIMARY KEY,
+ `IP` varchar(200) NOT NULL,
+ `PORT` varchar(200) NOT NULL,
+ `USERNAME` varchar(255) NOT NULL,
+ `PASSWORD` varchar(255) NOT NULL
+)
+;
+
+COMMIT; \ No newline at end of file