Skip to content

Commit a8595c8

Browse files
committed
K8s version, Manifests & Vendor Update
1 parent 93a6200 commit a8595c8

File tree

1,401 files changed

+59604
-38326
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,401 files changed

+59604
-38326
lines changed

.github/workflows/makefile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Go 1.x
1313
uses: actions/setup-go@v2
1414
with:
15-
go-version: 1.17
15+
go-version: 1.18
1616
id: go
1717

1818
- name: Check out code into the Go module directory

Dockerfile_arm_all

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG CI_IMAGE_REGISTRY
22

3-
FROM golang:1.17.3 as builder
3+
FROM golang:1.18.5 as builder
44

55
ARG COMPONENT
66

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ else
3838
VERSION ?= ${VERSION}
3939
endif
4040

41-
RELEASE = v1.23.0
41+
RELEASE = v1.24.0
4242

4343
GOOS ?= linux
4444
ARCH ?= amd64
@@ -195,7 +195,7 @@ test-local: build-dirs
195195
-v $(PWD):$(DOCKER_REPO_ROOT) \
196196
-e COMPONENT="$(COMPONENT)" \
197197
-e GOPATH=/go/ \
198-
odo-docker-signed-local.artifactory.oci.oraclecorp.com/odx-oke/oke/k8-manager-base:go1.17.7-1.0.10 \
198+
odo-docker-signed-local.artifactory.oci.oraclecorp.com/odx-oke/oke/k8-manager-base:go1.18.3-1.0.10 \
199199
make coverage image
200200

201201
.PHONY: run-ccm-e2e-tests-local

container-storage-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Ex:
166166
apiVersion: storage.k8s.io/v1
167167
kind: CSIDriver
168168
metadata:
169-
name: blockvolume.csi.oraclecloud.com
169+
name: blockvolume.csi.oraclecloud.com
170170
spec:
171171
fsGroupPolicy: File
172172
```

go.mod

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -36,44 +36,36 @@ replace (
3636

3737
require (
3838
github.com/container-storage-interface/spec v1.6.0
39-
github.com/go-logr/zapr v1.2.0
4039
github.com/golang/protobuf v1.5.2
4140
github.com/kubernetes-csi/csi-lib-utils v0.11.0
42-
github.com/kubernetes-csi/external-attacher v0.0.0-20220607140055-8d337281e065 //v3.0.2
43-
github.com/kubernetes-csi/external-provisioner v0.0.0-20220603165354-da22b889f61a // v2.0.5
44-
github.com/kubernetes-csi/external-resizer v0.0.0-20220603171023-04cdbabd15cb // v1.0.1
45-
github.com/kubernetes-csi/external-snapshotter/client/v6 v6.0.1
4641
github.com/onsi/ginkgo v1.16.5
4742
github.com/onsi/gomega v1.17.0
4843
github.com/oracle/oci-go-sdk/v50 v50.1.0
4944
github.com/pkg/errors v0.9.1
5045
github.com/prometheus/client_golang v1.12.1
51-
github.com/spf13/cobra v1.4.0
46+
github.com/spf13/cobra v1.4.0 // indirect
5247
github.com/spf13/pflag v1.0.5
5348
github.com/spf13/viper v1.8.1
5449
go.uber.org/zap v1.19.1
5550
golang.org/x/net v0.0.0-20220403103023-749bd193bc2b
56-
golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12
51+
golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12 // indirect
5752
google.golang.org/grpc v1.45.0
5853
gopkg.in/natefinch/lumberjack.v2 v2.0.0
5954
gopkg.in/yaml.v2 v2.4.0
6055
k8s.io/api v0.24.1
6156
k8s.io/apimachinery v0.24.1
62-
k8s.io/apiserver v0.24.1
57+
k8s.io/apiserver v0.24.1 // indirect
6358
k8s.io/client-go v0.24.1
6459
k8s.io/cloud-provider v0.24.1
6560
k8s.io/component-base v0.24.1
6661
k8s.io/component-helpers v0.24.1
67-
k8s.io/csi-translation-lib v0.24.1
6862
k8s.io/klog v1.0.0
6963
k8s.io/klog/v2 v2.60.1
70-
k8s.io/kubelet v0.24.1
64+
k8s.io/kubelet v0.24.1 // indirect
7165
k8s.io/kubernetes v1.24.1
7266
k8s.io/mount-utils v0.24.1
7367
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9
74-
sigs.k8s.io/controller-runtime v0.11.2
7568
sigs.k8s.io/sig-storage-lib-external-provisioner/v6 v6.3.0
76-
sigs.k8s.io/sig-storage-lib-external-provisioner/v8 v8.0.0
7769
)
7870

7971
require (
@@ -92,7 +84,6 @@ require (
9284
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
9385
github.com/felixge/httpsnoop v1.0.1 // indirect
9486
github.com/fsnotify/fsnotify v1.5.1 // indirect
95-
github.com/go-kit/kit v0.10.0 // indirect
9687
github.com/go-logr/logr v1.2.3 // indirect
9788
github.com/go-openapi/jsonpointer v0.19.5 // indirect
9889
github.com/go-openapi/jsonreference v0.19.6 // indirect
@@ -101,10 +92,8 @@ require (
10192
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
10293
github.com/google/gnostic v0.6.8 // indirect
10394
github.com/google/go-cmp v0.5.7 // indirect
104-
github.com/google/go-querystring v1.0.0 // indirect
10595
github.com/google/gofuzz v1.2.0 // indirect
10696
github.com/google/uuid v1.3.0 // indirect
107-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
10897
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
10998
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
11099
github.com/hashicorp/hcl v1.0.0 // indirect
@@ -129,7 +118,6 @@ require (
129118
github.com/prometheus/client_model v0.2.0 // indirect
130119
github.com/prometheus/common v0.33.0 // indirect
131120
github.com/prometheus/procfs v0.7.3 // indirect
132-
github.com/sirupsen/logrus v1.8.1 // indirect
133121
github.com/sony/gobreaker v0.4.2-0.20210216022020-dd874f9dd33b // indirect
134122
github.com/spf13/afero v1.6.0 // indirect
135123
github.com/spf13/cast v1.3.1 // indirect
@@ -150,6 +138,7 @@ require (
150138
go.opentelemetry.io/otel/trace v0.20.0 // indirect
151139
go.opentelemetry.io/proto/otlp v0.7.0 // indirect
152140
go.uber.org/atomic v1.7.0 // indirect
141+
go.uber.org/goleak v1.1.12 // indirect
153142
go.uber.org/multierr v1.6.0 // indirect
154143
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
155144
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
@@ -160,22 +149,17 @@ require (
160149
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
161150
golang.org/x/tools v0.1.10 // indirect
162151
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
163-
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
164152
google.golang.org/appengine v1.6.7 // indirect
165153
google.golang.org/genproto v0.0.0-20220405205423-9d709892a2bf // indirect
166154
google.golang.org/protobuf v1.28.0 // indirect
167155
gopkg.in/inf.v0 v0.9.1 // indirect
168156
gopkg.in/ini.v1 v1.62.0 // indirect
169157
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
170158
gopkg.in/yaml.v3 v3.0.1 // indirect
171-
k8s.io/apiextensions-apiserver v0.24.1 // indirect
172159
k8s.io/controller-manager v0.24.1 // indirect
173160
k8s.io/kube-openapi v0.0.0-20220401212409-b28bf2818661 // indirect
174161
k8s.io/kube-scheduler v0.0.0 // indirect
175162
k8s.io/kubectl v0.0.0 // indirect
176-
oracle.com/oci/httpsigner v0.0.0-20190320175442-e8cb27ebf440 // indirect
177-
oracle.com/oci/ociauthz v0.0.0-20200515161105-5b1e37d2dc95 // indirect
178-
oracle.com/oci/tagging v0.0.0-20190321202046-20a2e48911da // indirect
179163
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.30 // indirect
180164
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
181165
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect

0 commit comments

Comments
 (0)