aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2019-05-08 11:15:46 -0700
committerKiran Kamineni <kiran.k.kamineni@intel.com>2019-05-08 11:18:04 -0700
commit3224842f7f977041019cb5b2cccd3f86b5a38d9f (patch)
tree63995174161914311b1f073661bc5f42de5d2e69
parent76605570e7b161098ef1f2dc328b134da55373b4 (diff)
Update Readme to reflect the new golang version
golang version used is 1.12.4. This patch updates the README.md to reflect that. Issue-ID: MULTICLOUD-615 Change-Id: I2ab4e0f12bf0a3ac1c807f39c5a9a05ee71c720f Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
-rw-r--r--README.md20
1 files changed, 13 insertions, 7 deletions
diff --git a/README.md b/README.md
index c3de0b55..fb94b4ca 100644
--- a/README.md
+++ b/README.md
@@ -16,18 +16,24 @@ MultiCloud Kubernetes plugin for ONAP multicloud.
# Installation
Requirements:
-* Go 1.11
+* Go 1.12.4
Steps:
-* Clone repo in GOPATH src:
- * `cd $GOPATH/src && git clone https://git.onap.org/multicloud/k8s`
+* Clone repo:
+ * `git clone https://git.onap.org/multicloud/k8s`
-* Run unit tests:
- * `make build`
+* Build everything:
+ * `cd k8s/src/k8splugin && make all`
-* Compile to build Binary:
- * `make deploy`
+* Run Tests:
+ * `cd k8s/src/k8splugin && make test`
+
+* Generate Coverage Report:
+ * `cd k8s/src/k8splugin && make cover`
+
+* Run the plugin:
+ * `cd k8s/deployments && ./start.sh`
# Architecture