| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 1 | module github.com/giolekva/pcloud/core/ns-controller |
| 2 | |
| 3 | go 1.18 |
| 4 | |
| 5 | require ( |
| 6 | github.com/Masterminds/sprig/v3 v3.2.3 |
| 7 | github.com/go-git/go-billy/v5 v5.5.0 |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 8 | 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 Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 13 | ) |
| 14 | |
| 15 | require ( |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 16 | github.com/Masterminds/goutils v1.1.1 // indirect |
| 17 | github.com/Masterminds/semver/v3 v3.2.0 // indirect |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 18 | github.com/beorn7/perks v1.0.1 // indirect |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 19 | github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 20 | github.com/cyphar/filepath-securejoin v0.2.4 // indirect |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 21 | 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 Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 25 | github.com/go-logr/logr v1.2.4 // indirect |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 26 | 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 Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 30 | 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 Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 33 | github.com/google/gnostic-models v0.6.8 // indirect |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 34 | github.com/google/go-cmp v0.5.9 // indirect |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 35 | github.com/google/gofuzz v1.2.0 // indirect |
| 36 | github.com/google/uuid v1.3.1 // indirect |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 37 | 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 Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 41 | github.com/mailru/easyjson v0.7.7 // indirect |
| 42 | github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 43 | 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 Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 48 | github.com/onsi/ginkgo/v2 v2.12.0 // indirect |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 49 | github.com/pkg/errors v0.9.1 // indirect |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 50 | 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 Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 55 | 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 Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 58 | 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 Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 68 | golang.org/x/text v0.13.0 // indirect |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 69 | 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 Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 72 | google.golang.org/appengine v1.6.7 // indirect |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 73 | google.golang.org/protobuf v1.31.0 // indirect |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 74 | gopkg.in/inf.v0 v0.9.1 // indirect |
| Giorgi Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 75 | gopkg.in/yaml.v2 v2.4.0 // indirect |
| 76 | gopkg.in/yaml.v3 v3.0.1 // indirect |
| Giorgi Lekveishvili | e58fc59 | 2023-12-07 13:24:07 +0400 | [diff] [blame^] | 77 | 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 Lekveishvili | e8b2f01 | 2023-11-30 19:05:03 +0400 | [diff] [blame] | 84 | sigs.k8s.io/yaml v1.3.0 // indirect |
| 85 | ) |