blob: 38c5b01f5ced740ad27dc88c38ebb51ca645c480 [file] [log] [blame]
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +04001module github.com/giolekva/pcloud/core/ns-controller
2
3go 1.18
4
5require (
6 github.com/Masterminds/sprig/v3 v3.2.3
7 github.com/go-git/go-billy/v5 v5.5.0
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +04008 github.com/miekg/dns v1.1.55
9 k8s.io/api v0.28.1
10 k8s.io/apimachinery v0.28.1
11 k8s.io/client-go v0.28.1
12 sigs.k8s.io/controller-runtime v0.16.1
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040013)
14
15require (
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040016 github.com/Masterminds/goutils v1.1.1 // indirect
17 github.com/Masterminds/semver/v3 v3.2.0 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040018 github.com/beorn7/perks v1.0.1 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040019 github.com/cespare/xxhash/v2 v2.2.0 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040020 github.com/cyphar/filepath-securejoin v0.2.4 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040021 github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
22 github.com/emicklei/go-restful/v3 v3.11.0 // indirect
23 github.com/evanphx/json-patch/v5 v5.6.0 // indirect
24 github.com/fsnotify/fsnotify v1.6.0 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040025 github.com/go-logr/logr v1.2.4 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040026 github.com/go-logr/zapr v1.2.4 // indirect
27 github.com/go-openapi/jsonpointer v0.19.6 // indirect
28 github.com/go-openapi/jsonreference v0.20.2 // indirect
29 github.com/go-openapi/swag v0.22.3 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040030 github.com/gogo/protobuf v1.3.2 // indirect
31 github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
32 github.com/golang/protobuf v1.5.3 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040033 github.com/google/gnostic-models v0.6.8 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040034 github.com/google/go-cmp v0.5.9 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040035 github.com/google/gofuzz v1.2.0 // indirect
36 github.com/google/uuid v1.3.1 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040037 github.com/huandu/xstrings v1.3.3 // indirect
38 github.com/imdario/mergo v0.3.12 // indirect
39 github.com/josharian/intern v1.0.0 // indirect
40 github.com/json-iterator/go v1.1.12 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040041 github.com/mailru/easyjson v0.7.7 // indirect
42 github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040043 github.com/mitchellh/copystructure v1.0.0 // indirect
44 github.com/mitchellh/reflectwalk v1.0.0 // indirect
45 github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
46 github.com/modern-go/reflect2 v1.0.2 // indirect
47 github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040048 github.com/onsi/ginkgo/v2 v2.12.0 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040049 github.com/pkg/errors v0.9.1 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040050 github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
51 github.com/prometheus/client_golang v1.16.0 // indirect
52 github.com/prometheus/client_model v0.4.0 // indirect
53 github.com/prometheus/common v0.44.0 // indirect
54 github.com/prometheus/procfs v0.10.1 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040055 github.com/shopspring/decimal v1.2.0 // indirect
56 github.com/spf13/cast v1.3.1 // indirect
57 github.com/spf13/pflag v1.0.5 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040058 github.com/stretchr/testify v1.8.4 // indirect
59 go.uber.org/multierr v1.11.0 // indirect
60 go.uber.org/zap v1.25.0 // indirect
61 golang.org/x/crypto v0.14.0 // indirect
62 golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
63 golang.org/x/mod v0.12.0 // indirect
64 golang.org/x/net v0.17.0 // indirect
65 golang.org/x/oauth2 v0.12.0 // indirect
66 golang.org/x/sys v0.13.0 // indirect
67 golang.org/x/term v0.13.0 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040068 golang.org/x/text v0.13.0 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040069 golang.org/x/time v0.3.0 // indirect
70 golang.org/x/tools v0.13.0 // indirect
71 gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040072 google.golang.org/appengine v1.6.7 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040073 google.golang.org/protobuf v1.31.0 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040074 gopkg.in/inf.v0 v0.9.1 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040075 gopkg.in/yaml.v2 v2.4.0 // indirect
76 gopkg.in/yaml.v3 v3.0.1 // indirect
Giorgi Lekveishvilie58fc592023-12-07 13:24:07 +040077 k8s.io/apiextensions-apiserver v0.28.1 // indirect
78 k8s.io/component-base v0.28.1 // indirect
79 k8s.io/klog/v2 v2.100.1 // indirect
80 k8s.io/kube-openapi v0.0.0-20230905202853-d090da108d2f // indirect
81 k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
82 sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
83 sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect
Giorgi Lekveishvilie8b2f012023-11-30 19:05:03 +040084 sigs.k8s.io/yaml v1.3.0 // indirect
85)