aboutsummaryrefslogtreecommitdiffstats
path: root/src/dcm/go.mod
diff options
context:
space:
mode:
authorItohan <itohan.ukponmwan@intel.com>2020-04-14 17:06:13 -0700
committerItohan <itohan.ukponmwan@intel.com>2020-04-20 12:02:19 -0700
commitb0919a7cd6f49bcd2ae3e59c7a31e40f36cb7879 (patch)
treef756d263bd25140ad83cf6b9041a9e3f62f7e5c7 /src/dcm/go.mod
parentf853b30cdc2655f6889f24214ba21791351c0787 (diff)
Implement Apply API for DCM
This implents the Apply API. When the apply API is called, this reads from mongodb and creates resources in ETCD Issue-ID: MULTICLOUD-996 Signed-off-by: Itohan Ukponmwan <itohan.ukponmwan@intel.com> Change-Id: I5b9c8b44673e66296d1339b5b3f4afc5f4cae9cc
Diffstat (limited to 'src/dcm/go.mod')
-rw-r--r--src/dcm/go.mod23
1 files changed, 17 insertions, 6 deletions
diff --git a/src/dcm/go.mod b/src/dcm/go.mod
index 994f919a..4d73085d 100644
--- a/src/dcm/go.mod
+++ b/src/dcm/go.mod
@@ -1,11 +1,22 @@
module github.com/onap/multicloud-k8s/src/dcm
-go 1.12
-
require (
- github.com/gorilla/handlers v1.4.2
- github.com/gorilla/mux v1.7.4
- github.com/onap/multicloud-k8s/src/orchestrator v0.0.0-20200309182120-42c5cef605d1
- github.com/pkg/errors v0.9.1
+ github.com/gorilla/handlers v1.3.0
+ github.com/gorilla/mux v1.6.2
+ github.com/onap/multicloud-k8s/src/orchestrator v0.0.0-20200413204718-f853b30cdc26
+ github.com/pkg/errors v0.8.1
github.com/stretchr/testify v1.4.0
+ gopkg.in/yaml.v2 v2.2.2
+)
+
+replace (
+ k8s.io/api => k8s.io/api v0.0.0-20190409021203-6e4e0e4f393b
+ k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190409022649-727a075fdec8
+ k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190404173353-6a84e37a896d
+ k8s.io/apiserver => k8s.io/apiserver v0.0.0-20190409021813-1ec86e4da56c
+ k8s.io/cli-runtime => k8s.io/cli-runtime v0.0.0-20190409023024-d644b00f3b79
+ k8s.io/client-go => k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
+ k8s.io/cloud-provider => k8s.io/cloud-provider v0.0.0-20190409023720-1bc0c81fa51d
)
+
+go 1.13