forked from flant/addon-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
44 lines (39 loc) · 1.54 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module github.com/flant/addon-operator
go 1.15
require (
github.com/davecgh/go-spew v1.1.1
github.com/evanphx/json-patch v4.11.0+incompatible
github.com/flant/kube-client v0.0.6
github.com/flant/shell-operator v1.0.9-0.20220302082030-614d4cca72da
github.com/go-chi/chi v4.0.3+incompatible
github.com/go-openapi/spec v0.19.8
github.com/go-openapi/strfmt v0.19.5
github.com/go-openapi/swag v0.19.9
github.com/go-openapi/validate v0.19.12
github.com/hashicorp/go-multierror v1.1.1
github.com/kennygrant/sanitize v1.2.4
github.com/onsi/gomega v1.17.0
github.com/peterbourgon/mergemap v0.0.0-20130613134717-e21c03b7a721
github.com/prometheus/client_golang v1.11.0
github.com/segmentio/go-camelcase v0.0.0-20160726192923-7085f1e3c734
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.7.0
github.com/tidwall/gjson v1.12.1
github.com/tidwall/sjson v1.2.3
go.uber.org/goleak v1.1.12
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/satori/go.uuid.v1 v1.2.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
helm.sh/helm/v3 v3.5.1
k8s.io/api v0.20.5
k8s.io/apimachinery v0.20.5
k8s.io/client-go v0.20.5
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
rsc.io/letsencrypt v0.0.3 // indirect
sigs.k8s.io/yaml v1.3.0
)
// Remove 'in body' from errors, fix for Go 1.16 (https://github.com/go-openapi/validate/pull/138).
replace github.com/go-openapi/validate => github.com/flant/go-openapi-validate v0.19.12-flant.0
// Due to Helm3 lib problems
replace k8s.io/client-go => k8s.io/client-go v0.19.11
replace k8s.io/api => k8s.io/api v0.19.11