Skip to content
This repository was archived by the owner on Mar 13, 2021. It is now read-only.

Commit 203f307

Browse files
scothisSwapnil Bawaskar
authored and
Swapnil Bawaskar
committed
Update system (#127)
Now depending on k8s 1.16.3 libraries. Removing the azure auth plugin as it won't compile (and am not certain that we actually need it).
1 parent bc2a320 commit 203f307

File tree

4 files changed

+180
-90
lines changed

4 files changed

+180
-90
lines changed

cmd/riff/main.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ import (
2323
"strings"
2424

2525
// load credential helpers
26-
_ "k8s.io/client-go/plugin/pkg/client/auth"
26+
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
27+
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"
28+
_ "k8s.io/client-go/plugin/pkg/client/auth/openstack"
2729

2830
"github.com/projectriff/cli/pkg/cli"
2931
"github.com/projectriff/cli/pkg/riff/commands"

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ require (
1111
github.com/ghodss/yaml v1.0.0
1212
github.com/google/go-cmp v0.3.1
1313
github.com/mitchellh/go-homedir v1.1.0
14-
github.com/projectriff/system v0.0.0-20191107171045-d21c78817005
14+
github.com/projectriff/system v0.0.0-20191119095659-80119a4cf209
1515
github.com/spf13/cobra v0.0.5
1616
github.com/spf13/viper v1.5.0
1717
github.com/stretchr/testify v1.4.0
1818
golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8
19-
// equivalent of kubernetes-1.15.5 tag for each k8s.io repo
20-
k8s.io/api v0.0.0-20191016110246-af539daaa43a
21-
k8s.io/apiextensions-apiserver v0.0.0-20191016113439-b64f2075a530
22-
k8s.io/apimachinery v0.0.0-20191004115701-31ade1b30762
23-
k8s.io/client-go v0.0.0-20191016110837-54936ba21026
19+
// equivalent of kubernetes-1.16.3 tag for each k8s.io repo
20+
k8s.io/api v0.0.0-20191114100352-16d7abae0d2a
21+
k8s.io/apiextensions-apiserver v0.0.0-20191114105449-027877536833
22+
k8s.io/apimachinery v0.0.0-20191028221656-72ed19daf4bb
23+
k8s.io/client-go v0.0.0-20191114101535-6c5935290e33
2424
)

0 commit comments

Comments
 (0)