Skip to content

Commit 3fdf4a5

Browse files
committed
Removes replica duplicat helm depedencies
we should only use a single version of a dependency. this fixes an issue where we were importing helm libs from 2 different sources of truth. #7
1 parent cbbbce0 commit 3fdf4a5

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

go.mod

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ require (
1212
github.com/ghodss/yaml v1.0.0 // indirect
1313
github.com/gobwas/glob v0.2.3 // indirect
1414
github.com/golang/protobuf v1.3.1
15-
github.com/helm/helm v2.14.3+incompatible
1615
github.com/huandu/xstrings v1.2.0 // indirect
1716
github.com/imdario/mergo v0.3.8 // indirect
1817
github.com/jessevdk/go-flags v1.4.0

go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
4848
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
4949
github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY=
5050
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
51-
github.com/helm/helm v2.14.3+incompatible h1:qcA+YrKE8026DX8h4HANBnx+hKrB2oOZYpS0tMtmR/A=
52-
github.com/helm/helm v2.14.3+incompatible/go.mod h1:ahXhuvluW4YnSL6W6hDVetZsVK8Pv4BP8OwKli7aMqo=
5351
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
5452
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
5553
github.com/huandu/xstrings v1.2.0 h1:yPeWdRnmynF7p+lLYz0H2tthW9lqhMJrQV/U7yy4wX0=

pkg/commands/util.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"strings"
1414

1515
"github.com/golang/protobuf/ptypes/timestamp"
16-
"github.com/helm/helm/pkg/renderutil"
16+
"k8s.io/helm/pkg/renderutil"
1717
"github.com/mitchellh/colorstring"
1818
"github.com/open-policy-agent/opa/rego"
1919
"github.com/open-policy-agent/opa/tester"

0 commit comments

Comments
 (0)