Skip to content

Commit 45ee6a0

Browse files
committed
E2E fixes, added checks for taints before proceeding with tests
1 parent 1adedcb commit 45ee6a0

File tree

8 files changed

+226
-623
lines changed

8 files changed

+226
-623
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ cloud-provider specific code out of the Kubernetes codebase.
2929
| \>=v 0.13 | v1.19 | v1.21 |
3030
| v1.19.12 | v1.19 | v1.21 |
3131
| v1.22.0 | v1.22 | - |
32+
| v1.23.0 | v1.23 | - |
33+
3234

3335

3436
Note:
@@ -168,7 +170,6 @@ by the community.
168170

169171
| Release | Expected Release Date |
170172
|-----------------------|-----------------------|
171-
| Support for K8s v1.23 | June 2022 |
172173
| Support for K8s v1.24 | August 2022 |
173174

174175
## License

ci-docker-images/Dockerfile

-53
This file was deleted.

ci-docker-images/Makefile

-39
This file was deleted.

go.mod

-13
Original file line numberDiff line numberDiff line change
@@ -81,30 +81,23 @@ require (
8181
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
8282
github.com/felixge/httpsnoop v1.0.1 // indirect
8383
github.com/fsnotify/fsnotify v1.4.9 // indirect
84-
github.com/go-kit/kit v0.10.0 // indirect
8584
github.com/go-logr/logr v1.2.0 // indirect
8685
github.com/go-openapi/jsonpointer v0.19.5 // indirect
8786
github.com/go-openapi/jsonreference v0.19.5 // indirect
8887
github.com/go-openapi/swag v0.19.14 // indirect
8988
github.com/gogo/protobuf v1.3.2 // indirect
9089
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
9190
github.com/google/go-cmp v0.5.5 // indirect
92-
github.com/google/go-querystring v1.0.0 // indirect
9391
github.com/google/gofuzz v1.1.0 // indirect
9492
github.com/google/uuid v1.1.2 // indirect
9593
github.com/googleapis/gnostic v0.5.5 // indirect
96-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
9794
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
9895
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
9996
github.com/hashicorp/hcl v1.0.0 // indirect
10097
github.com/imdario/mergo v0.3.9 // indirect
10198
github.com/inconshreveable/mousetrap v1.0.0 // indirect
10299
github.com/josharian/intern v1.0.0 // indirect
103100
github.com/json-iterator/go v1.1.12 // indirect
104-
github.com/kubernetes-csi/external-attacher v0.0.0-20201106010650-6d1beabd0fad // indirect; v3.0.2
105-
github.com/kubernetes-csi/external-provisioner v0.0.0-20210409185916-86c2ba950e76 // indirect; v2.0.5
106-
github.com/kubernetes-csi/external-resizer v1.0.1 // indirect; v1.0.1
107-
github.com/kubernetes-csi/external-snapshotter/client/v2 v2.2.0-rc3 // indirect
108101
github.com/magiconair/properties v1.8.5 // indirect
109102
github.com/mailru/easyjson v0.7.6 // indirect
110103
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
@@ -123,7 +116,6 @@ require (
123116
github.com/prometheus/client_model v0.2.0 // indirect
124117
github.com/prometheus/common v0.28.0 // indirect
125118
github.com/prometheus/procfs v0.6.0 // indirect
126-
github.com/sirupsen/logrus v1.8.1 // indirect
127119
github.com/sony/gobreaker v0.4.2-0.20210216022020-dd874f9dd33b // indirect
128120
github.com/spf13/afero v1.6.0 // indirect
129121
github.com/spf13/cast v1.3.1 // indirect
@@ -163,17 +155,12 @@ require (
163155
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
164156
k8s.io/apiserver v0.23.4 // indirect
165157
k8s.io/controller-manager v0.23.4 // indirect
166-
k8s.io/csi-translation-lib v0.23.4 // indirect
167158
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect
168159
k8s.io/kube-scheduler v0.0.0 // indirect
169160
k8s.io/kubectl v0.0.0 // indirect
170161
k8s.io/kubelet v0.23.4 // indirect
171162
k8s.io/mount-utils v0.23.4 // indirect
172-
oracle.com/oci/httpsigner v0.0.0-20190320175442-e8cb27ebf440 // indirect
173-
oracle.com/oci/ociauthz v0.0.0-20200515161105-5b1e37d2dc95 // indirect
174-
oracle.com/oci/tagging v0.0.0-20190321202046-20a2e48911da // indirect
175163
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.27 // indirect
176-
sigs.k8s.io/controller-runtime v0.6.2 // indirect
177164
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
178165
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
179166
sigs.k8s.io/yaml v1.2.0 // indirect

0 commit comments

Comments
 (0)