@@ -3,19 +3,14 @@ module github.com/operator-framework/operator-sdk
3
3
go 1.13
4
4
5
5
require (
6
- github.com/DATA-DOG/go-sqlmock v1.4.1 // indirect
7
6
github.com/blang/semver v3.5.1+incompatible
8
- github.com/coreos/prometheus-operator v0.38.0
7
+ github.com/coreos/prometheus-operator v0.38.1-0.20200424145508-7e176fda06cc
9
8
github.com/fatih/structtag v1.1.0
10
9
github.com/go-logr/logr v0.1.0
11
10
github.com/go-logr/zapr v0.1.1
12
- github.com/gobuffalo/packr v1.30.1 // indirect
13
11
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
14
- github.com/helm/helm-2to3 v0.5.1
15
12
github.com/iancoleman/strcase v0.0.0-20190422225806-e506e3ef7365
16
- github.com/jmoiron/sqlx v1.2.0 // indirect
17
13
github.com/markbates/inflect v1.0.4
18
- github.com/martinlindhe/base36 v1.0.0
19
14
github.com/mattn/go-isatty v0.0.12
20
15
github.com/mitchellh/go-homedir v1.1.0
21
16
github.com/mitchellh/mapstructure v1.1.2
@@ -25,43 +20,40 @@ require (
25
20
github.com/pkg/errors v0.9.1
26
21
github.com/prometheus/client_golang v1.5.1
27
22
github.com/rogpeppe/go-internal v1.5.0
28
- github.com/rubenv/sql-migrate v0.0.0-20191025130928-9355dd04f4b3 // indirect
29
23
github.com/sergi/go-diff v1.0.0
30
24
github.com/sirupsen/logrus v1.5.0
31
25
github.com/spf13/afero v1.2.2
32
- github.com/spf13/cobra v0 .0.5
26
+ github.com/spf13/cobra v1 .0.0
33
27
github.com/spf13/pflag v1.0.5
34
28
github.com/spf13/viper v1.4.0
35
- github.com/stretchr/testify v1.4.0
36
- github.com/ziutek/mymysql v1.5.4 // indirect
29
+ github.com/stretchr/testify v1.5.1
37
30
go.uber.org/zap v1.14.1
31
+ golang.org/x/net v0.0.0-20200301022130-244492dfa37a
38
32
golang.org/x/tools v0.0.0-20200327195553-82bb89366a1e
39
33
gomodules.xyz/jsonpatch/v3 v3.0.1
40
- gopkg.in/gorp.v1 v1.7.2 // indirect
41
34
gopkg.in/yaml.v2 v2.2.8
42
35
gopkg.in/yaml.v3 v3.0.0-20190905181640-827449938966
43
- helm.sh/helm/v3 v3.1.2
44
- k8s.io/api v0.17.4
45
- k8s.io/apiextensions-apiserver v0.17.4
46
- k8s.io/apimachinery v0.17.4
47
- k8s.io/cli-runtime v0.17.4
36
+ helm.sh/helm/v3 v3.2.0
37
+ k8s.io/api v0.18.2
38
+ k8s.io/apiextensions-apiserver v0.18.2
39
+ k8s.io/apimachinery v0.18.2
40
+ k8s.io/cli-runtime v0.18.2
48
41
k8s.io/client-go v12.0.0+incompatible
49
- k8s.io/code-generator v0.17.4
50
- k8s.io/gengo v0.0.0-20191010091904-7fa3014cb28f
51
- k8s.io/helm v2.16.3+incompatible
42
+ k8s.io/code-generator v0.18.2
43
+ k8s.io/gengo v0.0.0-20200114144118-36b2048a9120
52
44
k8s.io/klog v1.0.0
53
45
k8s.io/kube-state-metrics v1.7.2
54
- k8s.io/kubectl v0.17.4
46
+ k8s.io/kubectl v0.18.2
55
47
rsc.io/letsencrypt v0.0.3 // indirect
56
- sigs.k8s.io/controller-runtime v0.5.2
57
- sigs.k8s.io/controller-tools v0.2.8
48
+ sigs.k8s.io/controller-runtime v0.6.0
49
+ sigs.k8s.io/controller-tools v0.3.0
58
50
// Using branch feature/plugins-part-2-electric-boogaloo 27812b07d2db958a31f985b4d9800c204f68bff0
59
51
sigs.k8s.io/kubebuilder v1.0.9-0.20200409105744-27812b07d2db
60
- // todo: Note: this needs to be bumped to v1.2.0 when we bump to k8s 1.18.
61
- sigs.k8s.io/yaml v1.1.0
52
+ sigs.k8s.io/yaml v1.2.0
62
53
)
63
54
64
55
replace (
65
56
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible // Required by OLM
66
- k8s.io/client-go => k8s.io/client-go v0.17.4 // Required by prometheus-operator
57
+ github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.10.0
58
+ k8s.io/client-go => k8s.io/client-go v0.18.2
67
59
)
0 commit comments