Skip to content

Commit eea3c76

Browse files
Merge pull request #133 from shiftstack/merge-upstream
Merges upstream and updates the vendor folder
2 parents 3caa2e3 + a863e37 commit eea3c76

File tree

1,387 files changed

+64414
-31623
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,387 files changed

+64414
-31623
lines changed

.github/workflows/release-cpo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: actions/setup-go@v3
1717
with:
18-
go-version: 1.17
18+
go-version: 1.19
1919

2020
- name: Set up Docker Buildx
2121
uses: docker/setup-buildx-action@v1

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,6 @@ zz_generated.openapi.go
155155
/snap
156156
/prime
157157
*.snap
158+
159+
# local gopath
160+
.go

charts/cinder-csi-plugin/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: latest
33
description: Cinder CSI Chart for OpenStack
44
name: openstack-cinder-csi
5-
version: 2.2.0
5+
version: 2.3.0
66
home: https://github.com/kubernetes/cloud-provider-openstack
77
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
88
maintainers:

charts/manila-csi-plugin/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: latest
33
description: Manila CSI Chart for OpenStack
44
name: openstack-manila-csi
5-
version: 1.5.0
5+
version: 1.6.0
66
home: http://github.com/kubernetes/cloud-provider-openstack
77
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
88
maintainers:

charts/openstack-cloud-controller-manager/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Openstack Cloud Controller Manager Helm Chart
44
icon: https://object-storage-ca-ymq-1.vexxhost.net/swift/v1/6e4619c416ff4bd19e1c087f27a43eea/www-images-prod/openstack-logo/OpenStack-Logo-Vertical.png
55
home: https://github.com/kubernetes/cloud-provider-openstack
66
name: openstack-cloud-controller-manager
7-
version: 1.3.0
7+
version: 1.4.0
88
maintainers:
99
- name: morremeyer
1010

cmd/tests/manila-csi-e2e-suite/manila_csi_e2e_suite_test.go

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@ package main
22

33
import (
44
"flag"
5-
"fmt"
6-
"log"
75
"os"
8-
"path"
96
"testing"
107

11-
"github.com/onsi/ginkgo"
12-
"github.com/onsi/ginkgo/config"
13-
"github.com/onsi/ginkgo/reporters"
8+
"github.com/onsi/ginkgo/v2"
149
"github.com/onsi/gomega"
1510
_ "k8s.io/cloud-provider-openstack/tests/e2e/csi/manila"
11+
"k8s.io/klog/v2"
1612
"k8s.io/kubernetes/test/e2e/framework"
1713
frameworkconfig "k8s.io/kubernetes/test/e2e/framework/config"
1814
)
@@ -25,18 +21,20 @@ func init() {
2521
}
2622

2723
func Test(t *testing.T) {
28-
gomega.RegisterFailHandler(ginkgo.Fail)
29-
var r []ginkgo.Reporter
24+
gomega.RegisterFailHandler(framework.Fail)
3025
if framework.TestContext.ReportDir != "" {
3126
if err := os.MkdirAll(framework.TestContext.ReportDir, 0755); err != nil {
32-
log.Fatalf("Failed creating report directory: %v", err)
33-
} else {
34-
r = append(r, reporters.NewJUnitReporter(path.Join(framework.TestContext.ReportDir, fmt.Sprintf("junit_%v%02d.xml", framework.TestContext.ReportPrefix, config.GinkgoConfig.ParallelNode))))
27+
klog.Fatalf("Failed creating report directory: %v", err)
3528
}
3629
}
37-
log.Printf("Starting e2e run %q on Ginkgo node %d", framework.RunID, config.GinkgoConfig.ParallelNode)
30+
klog.Infof("Starting e2e run %q on Ginkgo node %d", framework.RunID, ginkgo.GinkgoParallelProcess())
31+
32+
suiteConfig, reporterConfig := framework.CreateGinkgoConfig()
33+
reporterConfig.FullTrace = true
34+
35+
klog.Infof("Starting e2e run %q on Ginkgo node %d", framework.RunID, suiteConfig.ParallelProcess)
36+
ginkgo.RunSpecs(t, "Manila CSI e2e Suite", suiteConfig, reporterConfig)
3837

39-
ginkgo.RunSpecsWithDefaultAndCustomReporters(t, "Manila CSI Suite", r)
4038
}
4139

4240
func main() {

docs/cinder-csi-plugin/using-cinder-csi-plugin.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ These configuration options pertain to block storage and should appear in the `[
116116
Optional. Set to `true`, to rescan block device and verify its size before expanding the filesystem. Not all hypervizors have a /sys/class/block/XXX/device/rescan location, therefore if you enable this option and your hypervizor doesn't support this, you'll get a warning log on resize event. It is recommended to disable this option in this case. Defaults to `false`
117117
* `ignore-volume-az`
118118
Optional. When `Topology` feature enabled, by default, PV volume node affinity is populated with volume accessible topology, which is volume AZ. But, some of the openstack users do not have compute zones named exactly the same as volume zones. This might cause pods to go in pending state as no nodes available in volume AZ. Enabling `ignore-volume-az=true`, ignores volumeAZ and schedules on any of the available node AZ. Default `false`. Check `cross_az_attach` in [nova configuration](https://docs.openstack.org/nova/latest/configuration/config.html) for further information.
119+
* `ignore-volume-microversion`
120+
Optional. Set to `true` only when your cinder microversion is older than 3.34. This might cause some features to not work as expected, but aims to allow basic operations like creating a volume.
119121

120122
### Metadata
121123
These configuration options pertain to metadata and should appear in the `[Metadata]` section of the `$CLOUD_CONFIG` file.

docs/openstack-cloud-controller-manager/expose-applications-using-loadbalancer-type-service.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Request Body:
108108

109109
- `loadbalancer.openstack.org/class`
110110

111-
The name of a preconfigured class in the config file. If provided, this config options included in the class section take precedence over the annotations of floating-subnet-id and floating-network-id. See the section below for how it works.
111+
The name of a preconfigured class in the config file. If provided, this config options included in the class section take precedence over the annotations of floating-subnet-id, floating-network-id, network-id, subnet-id and member-subnet-id . See the section below for how it works.
112112

113113
- `loadbalancer.openstack.org/subnet-id`
114114

@@ -223,6 +223,10 @@ Request Body:
223223

224224
If this annotation is specified, the other annotations which define the load balancer features will be ignored.
225225

226+
- `loadbalancer.openstack.org/hostname`
227+
228+
This annotations explicitly sets a hostname in the status of the load balancer service.
229+
226230
### Switching between Floating Subnets by using preconfigured Classes
227231

228232
If you have multiple `FloatingIPPools` and/or `FloatingIPSubnets` it might be desirable to offer the user logical meanings for `LoadBalancers` like `internetFacing` or `DMZ` instead of requiring the user to select a dedicated network or subnet ID at the service object level as an annotation.
@@ -343,7 +347,7 @@ This requires that not only the proxy server(e.g. NGINX) should support PROXY pr
343347

344348
This guide uses nginx-ingress-controller as an example.
345349

346-
To enable PROXY protocol support, the openstack-cloud-controller-manager config option [enable-ingress-hostname](./using-openstack-cloud-controller-manager.md#load-balancer) should set to `true`.
350+
To enable PROXY protocol support, the either the openstack-cloud-controller-manager config option [enable-ingress-hostname](./using-openstack-cloud-controller-manager.md#load-balancer) should set to `true` or an explicit hostname should be set on the load balancer service via [annotation](./expose-applications-using-loadbalancer-type-service.md#service-annotations) `loadbalancer.openstack.org/hostname`.
347351

348352
1. Set up the nginx-ingress-controller
349353

go.mod

Lines changed: 78 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,43 @@
11
module k8s.io/cloud-provider-openstack
22

3-
go 1.17
3+
go 1.19
44

55
require (
6-
github.com/container-storage-interface/spec v1.5.0
7-
github.com/gophercloud/gophercloud v0.24.0
6+
github.com/container-storage-interface/spec v1.6.0
7+
github.com/gophercloud/gophercloud v1.0.0
88
github.com/gophercloud/utils v0.0.0-20220307143606-8e7800759d16
99
github.com/gorilla/mux v1.8.0
1010
github.com/hashicorp/go-version v1.4.0
11-
github.com/kubernetes-csi/csi-lib-utils v0.6.1
12-
github.com/kubernetes-csi/csi-test v2.2.0+incompatible
13-
github.com/kubernetes-csi/csi-test/v4 v4.2.0
11+
github.com/kubernetes-csi/csi-lib-utils v0.11.0
12+
github.com/kubernetes-csi/csi-test/v5 v5.0.0
1413
github.com/mitchellh/go-homedir v1.1.0
15-
github.com/mitchellh/mapstructure v1.4.1
16-
github.com/onsi/ginkgo v1.14.2
17-
github.com/onsi/gomega v1.10.4
14+
github.com/mitchellh/mapstructure v1.5.0
15+
github.com/onsi/ginkgo/v2 v2.1.6
16+
github.com/onsi/gomega v1.20.2
1817
github.com/pborman/uuid v1.2.0
1918
github.com/sirupsen/logrus v1.8.1
2019
github.com/spf13/cobra v1.4.0
2120
github.com/spf13/pflag v1.0.5
22-
github.com/spf13/viper v1.8.1
23-
github.com/stretchr/testify v1.7.0
24-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
25-
golang.org/x/sys v0.0.0-20220209214540-3681064d5158
21+
github.com/spf13/viper v1.12.0
22+
github.com/stretchr/testify v1.7.1
23+
golang.org/x/net v0.0.0-20220802222814-0bcc04d9c69b
24+
golang.org/x/sys v0.0.0-20220731174439-a90be440212d
2625
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
27-
google.golang.org/grpc v1.40.0
28-
google.golang.org/protobuf v1.27.1
26+
google.golang.org/grpc v1.48.0
27+
google.golang.org/protobuf v1.28.0
2928
gopkg.in/gcfg.v1 v1.2.3
3029
gopkg.in/godo.v2 v2.0.9
3130
gopkg.in/yaml.v2 v2.4.0
32-
k8s.io/api v0.24.0
33-
k8s.io/apimachinery v0.24.0
34-
k8s.io/apiserver v0.24.0
35-
k8s.io/client-go v0.24.0
36-
k8s.io/cloud-provider v0.24.0
37-
k8s.io/component-base v0.24.0
38-
k8s.io/klog/v2 v2.60.1
39-
k8s.io/kubernetes v1.24.0
40-
k8s.io/mount-utils v0.24.0
41-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9
31+
k8s.io/api v0.25.0
32+
k8s.io/apimachinery v0.25.0
33+
k8s.io/apiserver v0.25.0
34+
k8s.io/client-go v0.25.0
35+
k8s.io/cloud-provider v0.25.0
36+
k8s.io/component-base v0.25.0
37+
k8s.io/klog/v2 v2.70.1
38+
k8s.io/kubernetes v1.25.0
39+
k8s.io/mount-utils v0.25.0
40+
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed
4241
software.sslmate.com/src/go-pkcs12 v0.0.0-20190209200317-47dd539968c4
4342
)
4443

@@ -56,21 +55,21 @@ require (
5655
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
5756
github.com/davecgh/go-spew v1.1.1 // indirect
5857
github.com/docker/distribution v2.8.1+incompatible // indirect
59-
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
58+
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
6059
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
6160
github.com/felixge/httpsnoop v1.0.1 // indirect
62-
github.com/fsnotify/fsnotify v1.4.9 // indirect
63-
github.com/go-logr/logr v1.2.0 // indirect
61+
github.com/fsnotify/fsnotify v1.5.4 // indirect
62+
github.com/go-logr/logr v1.2.3 // indirect
6463
github.com/go-openapi/jsonpointer v0.19.5 // indirect
6564
github.com/go-openapi/jsonreference v0.19.5 // indirect
6665
github.com/go-openapi/swag v0.19.14 // indirect
6766
github.com/gogo/protobuf v1.3.2 // indirect
6867
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
6968
github.com/golang/protobuf v1.5.2 // indirect
7069
github.com/google/gnostic v0.5.7-v3refs // indirect
71-
github.com/google/go-cmp v0.5.5 // indirect
70+
github.com/google/go-cmp v0.5.8 // indirect
7271
github.com/google/gofuzz v1.1.0 // indirect
73-
github.com/google/uuid v1.1.2 // indirect
72+
github.com/google/uuid v1.3.0 // indirect
7473
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
7574
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
7675
github.com/hashicorp/hcl v1.0.0 // indirect
@@ -79,33 +78,34 @@ require (
7978
github.com/jmespath/go-jmespath v0.4.0 // indirect
8079
github.com/josharian/intern v1.0.0 // indirect
8180
github.com/json-iterator/go v1.1.12 // indirect
82-
github.com/magiconair/properties v1.8.5 // indirect
81+
github.com/magiconair/properties v1.8.6 // indirect
8382
github.com/mailru/easyjson v0.7.6 // indirect
8483
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
8584
github.com/mgutz/str v1.2.0 // indirect
8685
github.com/moby/spdystream v0.2.0 // indirect
86+
github.com/moby/sys/mountinfo v0.6.0 // indirect
8787
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
8888
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8989
github.com/modern-go/reflect2 v1.0.2 // indirect
9090
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
91-
github.com/nxadm/tail v1.4.5 // indirect
9291
github.com/opencontainers/go-digest v1.0.0 // indirect
9392
github.com/opencontainers/selinux v1.10.0 // indirect
94-
github.com/pelletier/go-toml v1.9.3 // indirect
93+
github.com/pelletier/go-toml v1.9.5 // indirect
94+
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
9595
github.com/pkg/errors v0.9.1 // indirect
9696
github.com/pmezard/go-difflib v1.0.0 // indirect
9797
github.com/prometheus/client_golang v1.12.1 // indirect
9898
github.com/prometheus/client_model v0.2.0 // indirect
9999
github.com/prometheus/common v0.32.1 // indirect
100100
github.com/prometheus/procfs v0.7.3 // indirect
101-
github.com/spf13/afero v1.6.0 // indirect
102-
github.com/spf13/cast v1.3.1 // indirect
101+
github.com/spf13/afero v1.8.2 // indirect
102+
github.com/spf13/cast v1.5.0 // indirect
103103
github.com/spf13/jwalterweatherman v1.1.0 // indirect
104104
github.com/stretchr/objx v0.2.0 // indirect
105-
github.com/subosito/gotenv v1.2.0 // indirect
106-
go.etcd.io/etcd/api/v3 v3.5.1 // indirect
107-
go.etcd.io/etcd/client/pkg/v3 v3.5.1 // indirect
108-
go.etcd.io/etcd/client/v3 v3.5.1 // indirect
105+
github.com/subosito/gotenv v1.3.0 // indirect
106+
go.etcd.io/etcd/api/v3 v3.5.4 // indirect
107+
go.etcd.io/etcd/client/pkg/v3 v3.5.4 // indirect
108+
go.etcd.io/etcd/client/v3 v3.5.4 // indirect
109109
go.opentelemetry.io/contrib v0.20.0 // indirect
110110
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0 // indirect
111111
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0 // indirect
@@ -121,62 +121,58 @@ require (
121121
go.uber.org/multierr v1.6.0 // indirect
122122
go.uber.org/zap v1.19.0 // indirect
123123
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect
124-
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
125-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
124+
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
125+
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
126126
golang.org/x/text v0.3.7 // indirect
127127
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
128-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
129128
google.golang.org/appengine v1.6.7 // indirect
130-
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
129+
google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect
131130
gopkg.in/inf.v0 v0.9.1 // indirect
132-
gopkg.in/ini.v1 v1.62.0 // indirect
131+
gopkg.in/ini.v1 v1.66.4 // indirect
133132
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
134-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
135133
gopkg.in/warnings.v0 v0.1.2 // indirect
136-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
134+
gopkg.in/yaml.v3 v3.0.1 // indirect
137135
k8s.io/apiextensions-apiserver v0.0.0 // indirect
138-
k8s.io/component-helpers v0.24.0 // indirect
139-
k8s.io/controller-manager v0.24.0 // indirect
140-
k8s.io/csi-translation-lib v0.24.0 // indirect
141-
k8s.io/klog v1.0.0 // indirect
142-
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
136+
k8s.io/component-helpers v0.25.0 // indirect
137+
k8s.io/controller-manager v0.25.0 // indirect
138+
k8s.io/csi-translation-lib v0.25.0 // indirect
139+
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
143140
k8s.io/kubectl v0.0.0 // indirect
144141
k8s.io/kubelet v0.0.0 // indirect
145142
k8s.io/pod-security-admission v0.0.0 // indirect
146-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.30 // indirect
147-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
148-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
143+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.32 // indirect
144+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
145+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
149146
sigs.k8s.io/yaml v1.2.0 // indirect
150147
)
151148

152149
replace (
153-
github.com/opencontainers/runc => github.com/opencontainers/runc v1.0.0-rc9
154150
google.golang.org/grpc v1.34.0 => google.golang.org/grpc v1.29.0
155-
k8s.io/api => k8s.io/api v0.24.0
156-
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.24.0
157-
k8s.io/apimachinery => k8s.io/apimachinery v0.24.0
158-
k8s.io/apiserver => k8s.io/apiserver v0.24.0
159-
k8s.io/cli-runtime => k8s.io/cli-runtime v0.24.0
160-
k8s.io/client-go => k8s.io/client-go v0.24.0
161-
k8s.io/cloud-provider => k8s.io/cloud-provider v0.24.0
162-
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.24.0
163-
k8s.io/code-generator => k8s.io/code-generator v0.24.0
164-
k8s.io/component-base => k8s.io/component-base v0.24.0
165-
k8s.io/component-helpers => k8s.io/component-helpers v0.24.0
166-
k8s.io/controller-manager => k8s.io/controller-manager v0.24.0
167-
k8s.io/cri-api => k8s.io/cri-api v0.24.0
168-
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.24.0
169-
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.24.0
170-
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.24.0
171-
k8s.io/kube-proxy => k8s.io/kube-proxy v0.24.0
172-
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.24.0
173-
k8s.io/kubectl => k8s.io/kubectl v0.24.0
174-
k8s.io/kubelet => k8s.io/kubelet v0.24.0
175-
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.24.0
176-
k8s.io/metrics => k8s.io/metrics v0.24.0
177-
k8s.io/mount-utils => k8s.io/mount-utils v0.24.0
178-
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.24.0
179-
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.24.0
180-
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.24.0
181-
k8s.io/sample-controller => k8s.io/sample-controller v0.24.0
151+
k8s.io/api => k8s.io/api v0.25.0
152+
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.25.0
153+
k8s.io/apimachinery => k8s.io/apimachinery v0.25.0
154+
k8s.io/apiserver => k8s.io/apiserver v0.25.0
155+
k8s.io/cli-runtime => k8s.io/cli-runtime v0.25.0
156+
k8s.io/client-go => k8s.io/client-go v0.25.0
157+
k8s.io/cloud-provider => k8s.io/cloud-provider v0.25.0
158+
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.25.0
159+
k8s.io/code-generator => k8s.io/code-generator v0.25.0
160+
k8s.io/component-base => k8s.io/component-base v0.25.0
161+
k8s.io/component-helpers => k8s.io/component-helpers v0.25.0
162+
k8s.io/controller-manager => k8s.io/controller-manager v0.25.0
163+
k8s.io/cri-api => k8s.io/cri-api v0.25.0
164+
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.25.0
165+
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.25.0
166+
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.25.0
167+
k8s.io/kube-proxy => k8s.io/kube-proxy v0.25.0
168+
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.25.0
169+
k8s.io/kubectl => k8s.io/kubectl v0.25.0
170+
k8s.io/kubelet => k8s.io/kubelet v0.25.0
171+
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.25.0
172+
k8s.io/metrics => k8s.io/metrics v0.25.0
173+
k8s.io/mount-utils => k8s.io/mount-utils v0.25.0
174+
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.25.0
175+
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.25.0
176+
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.25.0
177+
k8s.io/sample-controller => k8s.io/sample-controller v0.25.0
182178
)

0 commit comments

Comments
 (0)