|
1 | 1 | module k8s.io/cloud-provider-openstack
|
2 | 2 |
|
3 |
| -go 1.23.0 |
4 |
| - |
5 |
| -toolchain go1.23.5 |
| 3 | +go 1.23.6 |
6 | 4 |
|
7 | 5 | require (
|
8 |
| - github.com/container-storage-interface/spec v1.9.0 |
9 |
| - github.com/go-chi/chi/v5 v5.0.8 |
| 6 | + github.com/container-storage-interface/spec v1.11.0 |
| 7 | + github.com/go-chi/chi/v5 v5.2.1 |
10 | 8 | github.com/google/uuid v1.6.0
|
11 |
| - github.com/gophercloud/gophercloud/v2 v2.2.0 |
12 |
| - github.com/gophercloud/utils/v2 v2.0.0-20240701101423-2401526caee5 |
13 |
| - github.com/hashicorp/go-version v1.6.0 |
14 |
| - github.com/kubernetes-csi/csi-lib-utils v0.13.0 |
| 9 | + github.com/gophercloud/gophercloud/v2 v2.5.0 |
| 10 | + github.com/gophercloud/utils/v2 v2.0.0-20250212084022-725b94822eeb |
| 11 | + github.com/hashicorp/go-version v1.7.0 |
| 12 | + github.com/kubernetes-csi/csi-lib-utils v0.20.0 |
15 | 13 | github.com/kubernetes-csi/csi-test/v5 v5.0.0
|
16 | 14 | github.com/mitchellh/go-homedir v1.1.0
|
17 | 15 | github.com/mitchellh/mapstructure v1.5.0
|
18 |
| - github.com/onsi/ginkgo/v2 v2.21.0 |
19 |
| - github.com/onsi/gomega v1.35.1 |
| 16 | + github.com/onsi/ginkgo/v2 v2.22.2 |
| 17 | + github.com/onsi/gomega v1.36.2 |
20 | 18 | github.com/sirupsen/logrus v1.9.3
|
21 |
| - github.com/spf13/cobra v1.8.1 |
22 |
| - github.com/spf13/pflag v1.0.5 |
23 |
| - github.com/spf13/viper v1.15.0 |
24 |
| - github.com/stretchr/testify v1.9.0 |
| 19 | + github.com/spf13/cobra v1.9.1 |
| 20 | + github.com/spf13/pflag v1.0.6 |
| 21 | + github.com/spf13/viper v1.19.0 |
| 22 | + github.com/stretchr/testify v1.10.0 |
25 | 23 | go.uber.org/goleak v1.3.0
|
26 |
| - golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 |
27 |
| - golang.org/x/sys v0.28.0 |
28 |
| - golang.org/x/term v0.27.0 |
29 |
| - google.golang.org/grpc v1.65.0 |
30 |
| - google.golang.org/protobuf v1.35.1 |
| 24 | + golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa |
| 25 | + golang.org/x/sys v0.30.0 |
| 26 | + golang.org/x/term v0.29.0 |
| 27 | + google.golang.org/grpc v1.70.0 |
| 28 | + google.golang.org/protobuf v1.36.5 |
31 | 29 | gopkg.in/gcfg.v1 v1.2.3
|
32 | 30 | gopkg.in/godo.v2 v2.0.9
|
33 | 31 | gopkg.in/yaml.v2 v2.4.0
|
34 |
| - k8s.io/api v0.32.1 |
35 |
| - k8s.io/apimachinery v0.32.1 |
36 |
| - k8s.io/apiserver v0.32.1 |
37 |
| - k8s.io/client-go v0.32.1 |
38 |
| - k8s.io/cloud-provider v0.32.1 |
39 |
| - k8s.io/component-base v0.32.1 |
| 32 | + k8s.io/api v0.32.2 |
| 33 | + k8s.io/apimachinery v0.32.2 |
| 34 | + k8s.io/apiserver v0.32.2 |
| 35 | + k8s.io/client-go v0.32.2 |
| 36 | + k8s.io/cloud-provider v0.32.2 |
| 37 | + k8s.io/component-base v0.32.2 |
40 | 38 | k8s.io/klog/v2 v2.130.1
|
41 |
| - k8s.io/kms v0.32.1 |
42 |
| - k8s.io/kubernetes v1.32.1 |
43 |
| - k8s.io/mount-utils v0.32.1 |
44 |
| - k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 |
45 |
| - software.sslmate.com/src/go-pkcs12 v0.2.0 |
| 39 | + k8s.io/kms v0.32.2 |
| 40 | + k8s.io/kubernetes v1.32.2 |
| 41 | + k8s.io/mount-utils v0.32.2 |
| 42 | + k8s.io/utils v0.0.0-20241210054802-24370beab758 |
| 43 | + software.sslmate.com/src/go-pkcs12 v0.5.0 |
46 | 44 | )
|
47 | 45 |
|
48 | 46 | // the below fixes the "go list -m all" execution
|
49 | 47 | replace (
|
50 |
| - k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.32.1 |
51 |
| - k8s.io/cri-client => k8s.io/cri-client v0.32.1 |
52 |
| - k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.32.1 |
53 |
| - k8s.io/endpointslice => k8s.io/endpointslice v0.32.1 |
54 |
| - k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.32.1 |
55 |
| - k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.32.1 |
56 |
| - k8s.io/kube-proxy => k8s.io/kube-proxy v0.32.1 |
57 |
| - k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.32.1 |
58 |
| - k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.32.1 |
59 |
| - k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.32.1 |
| 48 | + k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.32.2 |
| 49 | + k8s.io/cri-client => k8s.io/cri-client v0.32.2 |
| 50 | + k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.32.2 |
| 51 | + k8s.io/endpointslice => k8s.io/endpointslice v0.32.2 |
| 52 | + k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.32.2 |
| 53 | + k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.32.2 |
| 54 | + k8s.io/kube-proxy => k8s.io/kube-proxy v0.32.2 |
| 55 | + k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.32.2 |
| 56 | + k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.32.2 |
| 57 | + k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.32.2 |
60 | 58 | )
|
61 | 59 |
|
62 | 60 | require (
|
63 |
| - cel.dev/expr v0.18.0 // indirect |
64 |
| - github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect |
| 61 | + cel.dev/expr v0.21.2 // indirect |
| 62 | + github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect |
65 | 63 | github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab // indirect
|
66 | 64 | github.com/MichaelTJones/walk v0.0.0-20161122175330-4748e29d5718 // indirect
|
67 | 65 | github.com/Microsoft/go-winio v0.6.2 // indirect
|
68 | 66 | github.com/NYTimes/gziphandler v1.1.1 // indirect
|
69 |
| - github.com/antlr4-go/antlr/v4 v4.13.0 // indirect |
| 67 | + github.com/antlr4-go/antlr/v4 v4.13.1 // indirect |
70 | 68 | github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
71 | 69 | github.com/beorn7/perks v1.0.1 // indirect
|
72 | 70 | github.com/blang/semver/v4 v4.0.0 // indirect
|
73 | 71 | github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
74 | 72 | github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
75 |
| - github.com/containerd/containerd/api v1.7.19 // indirect |
| 73 | + github.com/containerd/containerd/api v1.8.0 // indirect |
76 | 74 | github.com/containerd/errdefs v0.1.0 // indirect
|
77 | 75 | github.com/containerd/log v0.1.0 // indirect
|
78 |
| - github.com/containerd/ttrpc v1.2.5 // indirect |
| 76 | + github.com/containerd/ttrpc v1.2.7 // indirect |
79 | 77 | github.com/coreos/go-semver v0.3.1 // indirect
|
80 | 78 | github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
81 |
| - github.com/cyphar/filepath-securejoin v0.3.4 // indirect |
| 79 | + github.com/cyphar/filepath-securejoin v0.4.1 // indirect |
82 | 80 | github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
83 | 81 | github.com/distribution/reference v0.6.0 // indirect
|
84 | 82 | github.com/docker/go-units v0.5.0 // indirect
|
85 |
| - github.com/emicklei/go-restful/v3 v3.11.0 // indirect |
| 83 | + github.com/emicklei/go-restful/v3 v3.12.1 // indirect |
86 | 84 | github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
|
87 | 85 | github.com/felixge/httpsnoop v1.0.4 // indirect
|
88 |
| - github.com/fsnotify/fsnotify v1.7.0 // indirect |
| 86 | + github.com/fsnotify/fsnotify v1.8.0 // indirect |
89 | 87 | github.com/fxamacker/cbor/v2 v2.7.0 // indirect
|
90 | 88 | github.com/go-logr/logr v1.4.2 // indirect
|
91 | 89 | github.com/go-logr/stdr v1.2.2 // indirect
|
92 | 90 | github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
93 |
| - github.com/go-openapi/jsonreference v0.20.2 // indirect |
| 91 | + github.com/go-openapi/jsonreference v0.21.0 // indirect |
94 | 92 | github.com/go-openapi/swag v0.23.0 // indirect
|
95 | 93 | github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
|
96 | 94 | github.com/godbus/dbus/v5 v5.1.0 // indirect
|
97 |
| - github.com/gofrs/uuid/v5 v5.2.0 // indirect |
| 95 | + github.com/gofrs/uuid/v5 v5.3.1 // indirect |
98 | 96 | github.com/gogo/protobuf v1.3.2 // indirect
|
99 | 97 | github.com/golang/protobuf v1.5.4 // indirect
|
100 |
| - github.com/google/btree v1.0.1 // indirect |
| 98 | + github.com/google/btree v1.1.3 // indirect |
101 | 99 | github.com/google/cadvisor v0.51.0 // indirect
|
102 | 100 | github.com/google/cel-go v0.22.0 // indirect
|
103 |
| - github.com/google/gnostic-models v0.6.8 // indirect |
104 |
| - github.com/google/go-cmp v0.6.0 // indirect |
| 101 | + github.com/google/gnostic-models v0.6.9 // indirect |
| 102 | + github.com/google/go-cmp v0.7.0 // indirect |
105 | 103 | github.com/google/gofuzz v1.2.0 // indirect
|
106 |
| - github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect |
107 |
| - github.com/gorilla/websocket v1.5.0 // indirect |
| 104 | + github.com/google/pprof v0.0.0-20250208200701-d0013a598941 // indirect |
| 105 | + github.com/gorilla/websocket v1.5.3 // indirect |
108 | 106 | github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
|
109 |
| - github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect |
| 107 | + github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect |
110 | 108 | github.com/hashicorp/hcl v1.0.0 // indirect
|
111 | 109 | github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
112 | 110 | github.com/josharian/intern v1.0.0 // indirect
|
113 | 111 | github.com/json-iterator/go v1.1.12 // indirect
|
114 | 112 | github.com/karrick/godirwalk v1.17.0 // indirect
|
115 |
| - github.com/magiconair/properties v1.8.7 // indirect |
116 |
| - github.com/mailru/easyjson v0.7.7 // indirect |
| 113 | + github.com/klauspost/compress v1.18.0 // indirect |
| 114 | + github.com/kylelemons/godebug v1.1.0 // indirect |
| 115 | + github.com/magiconair/properties v1.8.9 // indirect |
| 116 | + github.com/mailru/easyjson v0.9.0 // indirect |
117 | 117 | github.com/mgutz/str v1.2.0 // indirect
|
118 | 118 | github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect
|
119 | 119 | github.com/moby/spdystream v0.5.0 // indirect
|
120 | 120 | github.com/moby/sys/mountinfo v0.7.2 // indirect
|
121 | 121 | github.com/moby/sys/userns v0.1.0 // indirect
|
122 |
| - github.com/moby/term v0.5.0 // indirect |
| 122 | + github.com/moby/term v0.5.2 // indirect |
123 | 123 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
124 | 124 | github.com/modern-go/reflect2 v1.0.2 // indirect
|
125 | 125 | github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
126 | 126 | github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
|
127 | 127 | github.com/opencontainers/go-digest v1.0.0 // indirect
|
128 |
| - github.com/opencontainers/runc v1.2.1 // indirect |
| 128 | + github.com/opencontainers/image-spec v1.1.0 // indirect |
| 129 | + github.com/opencontainers/runc v1.2.5 // indirect |
129 | 130 | github.com/opencontainers/runtime-spec v1.2.0 // indirect
|
130 | 131 | github.com/opencontainers/selinux v1.11.1 // indirect
|
131 |
| - github.com/pelletier/go-toml/v2 v2.0.7 // indirect |
| 132 | + github.com/pelletier/go-toml/v2 v2.2.3 // indirect |
132 | 133 | github.com/pkg/errors v0.9.1 // indirect
|
133 | 134 | github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
134 |
| - github.com/prometheus/client_golang v1.19.1 // indirect |
| 135 | + github.com/prometheus/client_golang v1.21.0 // indirect |
135 | 136 | github.com/prometheus/client_model v0.6.1 // indirect
|
136 |
| - github.com/prometheus/common v0.55.0 // indirect |
| 137 | + github.com/prometheus/common v0.62.0 // indirect |
137 | 138 | github.com/prometheus/procfs v0.15.1 // indirect
|
138 |
| - github.com/spf13/afero v1.9.5 // indirect |
139 |
| - github.com/spf13/cast v1.5.0 // indirect |
140 |
| - github.com/spf13/jwalterweatherman v1.1.0 // indirect |
| 139 | + github.com/sagikazarmark/locafero v0.7.0 // indirect |
| 140 | + github.com/sagikazarmark/slog-shim v0.1.0 // indirect |
| 141 | + github.com/sourcegraph/conc v0.3.0 // indirect |
| 142 | + github.com/spf13/afero v1.12.0 // indirect |
| 143 | + github.com/spf13/cast v1.7.1 // indirect |
141 | 144 | github.com/stoewer/go-strcase v1.3.0 // indirect
|
142 | 145 | github.com/stretchr/objx v0.5.2 // indirect
|
143 |
| - github.com/subosito/gotenv v1.4.2 // indirect |
| 146 | + github.com/subosito/gotenv v1.6.0 // indirect |
144 | 147 | github.com/x448/float16 v0.8.4 // indirect
|
145 |
| - go.etcd.io/etcd/api/v3 v3.5.16 // indirect |
146 |
| - go.etcd.io/etcd/client/pkg/v3 v3.5.16 // indirect |
147 |
| - go.etcd.io/etcd/client/v3 v3.5.16 // indirect |
148 |
| - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect |
149 |
| - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect |
150 |
| - go.opentelemetry.io/otel v1.28.0 // indirect |
151 |
| - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect |
152 |
| - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 // indirect |
153 |
| - go.opentelemetry.io/otel/metric v1.28.0 // indirect |
154 |
| - go.opentelemetry.io/otel/sdk v1.28.0 // indirect |
155 |
| - go.opentelemetry.io/otel/trace v1.28.0 // indirect |
156 |
| - go.opentelemetry.io/proto/otlp v1.3.1 // indirect |
| 148 | + go.etcd.io/etcd/api/v3 v3.5.18 // indirect |
| 149 | + go.etcd.io/etcd/client/pkg/v3 v3.5.18 // indirect |
| 150 | + go.etcd.io/etcd/client/v3 v3.5.18 // indirect |
| 151 | + go.opentelemetry.io/auto/sdk v1.1.0 // indirect |
| 152 | + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect |
| 153 | + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect |
| 154 | + go.opentelemetry.io/otel v1.34.0 // indirect |
| 155 | + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect |
| 156 | + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect |
| 157 | + go.opentelemetry.io/otel/metric v1.34.0 // indirect |
| 158 | + go.opentelemetry.io/otel/sdk v1.34.0 // indirect |
| 159 | + go.opentelemetry.io/otel/trace v1.34.0 // indirect |
| 160 | + go.opentelemetry.io/proto/otlp v1.5.0 // indirect |
157 | 161 | go.uber.org/multierr v1.11.0 // indirect
|
158 | 162 | go.uber.org/zap v1.27.0 // indirect
|
159 |
| - golang.org/x/crypto v0.31.0 // indirect |
160 |
| - golang.org/x/net v0.33.0 // indirect |
161 |
| - golang.org/x/oauth2 v0.23.0 // indirect |
162 |
| - golang.org/x/sync v0.10.0 // indirect |
163 |
| - golang.org/x/text v0.21.0 // indirect |
164 |
| - golang.org/x/time v0.7.0 // indirect |
165 |
| - golang.org/x/tools v0.26.0 // indirect |
166 |
| - google.golang.org/genproto/googleapis/api v0.0.0-20240826202546-f6391c0de4c7 // indirect |
167 |
| - google.golang.org/genproto/googleapis/rpc v0.0.0-20240826202546-f6391c0de4c7 // indirect |
| 163 | + golang.org/x/crypto v0.34.0 // indirect |
| 164 | + golang.org/x/net v0.35.0 // indirect |
| 165 | + golang.org/x/oauth2 v0.26.0 // indirect |
| 166 | + golang.org/x/sync v0.11.0 // indirect |
| 167 | + golang.org/x/text v0.22.0 // indirect |
| 168 | + golang.org/x/time v0.10.0 // indirect |
| 169 | + golang.org/x/tools v0.30.0 // indirect |
| 170 | + google.golang.org/genproto/googleapis/api v0.0.0-20250219182151-9fdb1cabc7b2 // indirect |
| 171 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect |
168 | 172 | gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
|
169 | 173 | gopkg.in/inf.v0 v0.9.1 // indirect
|
170 | 174 | gopkg.in/ini.v1 v1.67.0 // indirect
|
171 | 175 | gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
172 | 176 | gopkg.in/warnings.v0 v0.1.2 // indirect
|
173 | 177 | gopkg.in/yaml.v3 v3.0.1 // indirect
|
174 |
| - k8s.io/apiextensions-apiserver v0.32.1 // indirect |
175 |
| - k8s.io/component-helpers v0.32.1 // indirect |
176 |
| - k8s.io/controller-manager v0.32.1 // indirect |
177 |
| - k8s.io/cri-api v0.32.1 // indirect |
178 |
| - k8s.io/cri-client v0.0.0 // indirect |
179 |
| - k8s.io/csi-translation-lib v0.32.1 // indirect |
180 |
| - k8s.io/dynamic-resource-allocation v0.0.0 // indirect |
181 |
| - k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect |
182 |
| - k8s.io/kube-scheduler v0.0.0 // indirect |
183 |
| - k8s.io/kubectl v0.32.1 // indirect |
184 |
| - k8s.io/kubelet v0.32.1 // indirect |
185 |
| - k8s.io/pod-security-admission v0.32.1 // indirect |
186 |
| - sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 // indirect |
187 |
| - sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect |
188 |
| - sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect |
| 178 | + k8s.io/apiextensions-apiserver v0.32.2 // indirect |
| 179 | + k8s.io/component-helpers v0.32.2 // indirect |
| 180 | + k8s.io/controller-manager v0.32.2 // indirect |
| 181 | + k8s.io/cri-api v0.32.2 // indirect |
| 182 | + k8s.io/cri-client v0.32.2 // indirect |
| 183 | + k8s.io/csi-translation-lib v0.32.2 // indirect |
| 184 | + k8s.io/dynamic-resource-allocation v0.32.2 // indirect |
| 185 | + k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect |
| 186 | + k8s.io/kube-scheduler v0.32.2 // indirect |
| 187 | + k8s.io/kubectl v0.32.2 // indirect |
| 188 | + k8s.io/kubelet v0.32.2 // indirect |
| 189 | + k8s.io/pod-security-admission v0.32.2 // indirect |
| 190 | + sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect |
| 191 | + sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect |
| 192 | + sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect |
189 | 193 | sigs.k8s.io/yaml v1.4.0 // indirect
|
190 | 194 | )
|
0 commit comments