aboutsummaryrefslogtreecommitdiffstats
path: root/src/inventory/go.mod
diff options
context:
space:
mode:
authorIgor D.C <igor.duarte.cardoso@intel.com>2020-09-21 17:46:52 +0000
committerIgor D.C <igor.duarte.cardoso@intel.com>2020-09-22 23:20:39 +0000
commitfef2f1a959341d2abaea6dadaecccc4952c284c9 (patch)
tree8436efd16cd4ba3114889c45c23d43d64352c40d /src/inventory/go.mod
parent3bc5164b3ea166dd84a4c5f63ed95745100a324b (diff)
Fix missing operator-sdk dependency goautoneg
goautoneg used to be available from bitbucket.org/ww/goautoneg but not anymore. operator-sdk has been importing it from github.com/munnerz/goautoneg for some time now but since we were using operator-sdk v0.9.0, it was still pointing at the old (now deleted) repository. This patch bumps operator-sdk to v0.19.0 (which doesn't use goautoneg from bitbucket), controller-runtime to v0.5.11, helm to v2.16.12 and all k8s.io dependencies to v0.16.9 (consistent with the k8s v1.16.9 we use). Code changes have been made to make all modules compatible with the new dependencies. All src go.sums have been cleaned (deleted and re-built). Issue-ID: MULTICLOUD-1143 Change-Id: I89fc39e9595b4a6a38dd90028b161bcecd3ef349 Signed-off-by: Igor D.C <igor.duarte.cardoso@intel.com>
Diffstat (limited to 'src/inventory/go.mod')
-rw-r--r--src/inventory/go.mod2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inventory/go.mod b/src/inventory/go.mod
index e7d94194..4eff05d5 100644
--- a/src/inventory/go.mod
+++ b/src/inventory/go.mod
@@ -3,6 +3,6 @@ module github.com/onap/multicloud-k8s/src/inventory
go 1.12
require (
- github.com/onap/multicloud-k8s/src/k8splugin v0.0.0-20200303230813-37aed9b7a0db // indirect
+ github.com/onap/multicloud-k8s/src/k8splugin v0.0.0-20200303230813-37aed9b7a0db
k8s.io/api v0.17.2
)