diff options
author | Eric Multanen <eric.w.multanen@intel.com> | 2020-05-27 16:20:17 -0700 |
---|---|---|
committer | Eric Multanen <eric.w.multanen@intel.com> | 2020-05-28 12:06:58 -0700 |
commit | 9cfeb80dc920b213ea70fdfd2463f6746fb4e2f9 (patch) | |
tree | 7cfd95d943820132dcf61031656f8d5153aab4ac /src/orchestrator/go.mod | |
parent | ef27eb4d63f1cb91de2dbc166f599043aca2609e (diff) |
Update go.mod files of services to use local code
Change go.mod files to replace usage of services in
this repo with local code instead of upstream builds.
Fix a couple resulting issues.
Issue-ID: MULTICLOUD-1077
Signed-off-by: Eric Multanen <eric.w.multanen@intel.com>
Change-Id: I597c7bf98beac3fcee9e37699966cbe839335bf2
Diffstat (limited to 'src/orchestrator/go.mod')
-rw-r--r-- | src/orchestrator/go.mod | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/orchestrator/go.mod b/src/orchestrator/go.mod index 29614723..4eb87ca9 100644 --- a/src/orchestrator/go.mod +++ b/src/orchestrator/go.mod @@ -1,22 +1,19 @@ module github.com/onap/multicloud-k8s/src/orchestrator require ( + github.com/chai2010/gettext-go v0.0.0-20170215093142-bf70f2a70fb1 github.com/coreos/etcd v3.3.12+incompatible github.com/ghodss/yaml v1.0.0 - github.com/gogo/protobuf v1.3.1 // indirect github.com/golang/protobuf v1.3.4 - github.com/golang/snappy v0.0.1 // indirect github.com/gorilla/handlers v1.3.0 github.com/gorilla/mux v1.6.2 - github.com/onap/multicloud-k8s/src/k8splugin v0.0.0-20191115005109-f168ebb73d8d // indirect github.com/onap/multicloud-k8s/src/ncm v0.0.0-20200515060444-c77850a75eee github.com/pkg/errors v0.8.1 + github.com/russross/blackfriday v1.5.2 github.com/sirupsen/logrus v1.4.2 go.etcd.io/etcd v3.3.12+incompatible go.mongodb.org/mongo-driver v1.0.0 golang.org/x/net v0.0.0-20200301022130-244492dfa37a - golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 // indirect - google.golang.org/genproto v0.0.0-20200305110556-506484158171 // indirect google.golang.org/grpc v1.27.1 gopkg.in/yaml.v3 v3.0.0-20200506231410-2ff61e1afc86 k8s.io/apimachinery v0.0.0-20190831074630-461753078381 @@ -24,6 +21,7 @@ require ( ) replace ( + github.com/onap/multicloud-k8s/src/ncm => ../ncm 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 |