Skip to content

Commit 47356f7

Browse files
Upgrade secrets store csi driver version to 1.3.3 (#22)
* upgraded secrets store csi driver version to 1.3.3
1 parent 089c624 commit 47356f7

File tree

498 files changed

+41077
-8445
lines changed

Some content is hidden

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

498 files changed

+41077
-8445
lines changed

GettingStarted.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,14 +334,14 @@ All changes to those modules should be reflected in the remote VCS repository.
334334
```
335335
This command will update sources for that module in `vendor/` folder.
336336
1. Then commit those changes.
337+
1. Note: When 'sigs.k8s.io/secrets-store-csi-driver' is being upgraded, please make sure you upgrade version for secrets-store-csi-driver in the Chart.yaml
337338
338339
<a name="versioning"></a>
339340
## Versioning
340341
Each build publishes 2 artifacts: Docker image and Helm chart.
341342
Both of these artifacts use SemVer 2.0.0 for versioning.
342343
343344
That means that developers must increment both Docker image and Helm chart versions, otherwise, the build will fail:
344-
* Bump `version` field in `ocibuild.conf` file for Docker image;
345345
* Specify the same version in `appVersion` field in `charts/oci-secrets-store-csi-driver-provider/Chart.yaml` file;
346346
* Bump `version` field in `charts/oci-secrets-store-csi-driver-provider/Chart.yaml` file.
347347
@@ -357,7 +357,7 @@ Since this tool is standalone, the developers have to control the version themse
357357

358358
<a name="ci-setup"></a>
359359
## CI Setup
360-
GitHub Actions is used to implement Continuous integration pipeline.
360+
GitHub Actions is used to implement Continuous Integration pipeline.
361361
Location in the code base: .github/workflows
362362
Github workflows:
363363
1. unit-tests.yaml – Runs unit test cases
@@ -370,7 +370,7 @@ Github workflows:
370370
* On pushing a commit
371371
* dependencies:
372372
* None
373-
2. build-n-push.yaml – builds and pushes to image registry
373+
2. build-n-push.yaml – builds and pushes image to image registry
374374
* Functionality:
375375
* builds docker image
376376
* pushes to registry
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: secrets-store-csi-driver
33
repository: https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts
4-
version: 1.2.0
5-
digest: sha256:26b7ecb4b3672bbe96ded80ab272e72c48adaa085ceb1ddd542099571348c62f
6-
generated: "2022-09-23T22:57:26.716313+05:30"
4+
version: 1.3.3
5+
digest: sha256:448bd214c20f278f41d43688c8c5ef582fb6fea421bd36475d1298814fe8acce
6+
generated: "2023-05-26T14:51:25.764132+05:30"

charts/oci-secrets-store-csi-driver-provider/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
apiVersion: v2
88
name: oci-secrets-store-csi-driver-provider
99
description: OCI Vault provider for the Secrets Store CSI driver.
10-
version: 0.2.9
10+
version: 0.3.0
1111
type: application
1212

1313
appVersion: "0.9.4"
@@ -16,7 +16,7 @@ kubeVersion: ">=1.19.0-0" # CSI Driver 1.2.0 is compatible with K8S 1.19+
1616
dependencies:
1717
- name: secrets-store-csi-driver
1818
repository: https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts
19-
version: 1.2.0
19+
version: 1.3.3
2020
condition: secrets-store-csi-driver.install
2121

2222
maintainers:
Binary file not shown.
Binary file not shown.

charts/oci-secrets-store-csi-driver-provider/values.local.yaml

Lines changed: 0 additions & 15 deletions
This file was deleted.

charts/oci-secrets-store-csi-driver-provider/values.oke.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

go.mod

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
module github.com/oracle-samples/oci-secrets-store-csi-driver-provider
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/oracle/oci-go-sdk/v65 v65.3.0
77
github.com/pkg/errors v0.9.1
88
github.com/rs/zerolog v1.26.1
9+
go.opentelemetry.io/otel v0.20.0
10+
go.opentelemetry.io/otel/exporters/metric/prometheus v0.20.0
11+
go.opentelemetry.io/otel/metric v0.20.0
912
google.golang.org/grpc v1.47.0
10-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
11-
k8s.io/api v0.24.4
12-
k8s.io/apimachinery v0.24.4
13-
k8s.io/client-go v0.24.4
14-
sigs.k8s.io/secrets-store-csi-driver v1.2.4
13+
gopkg.in/yaml.v3 v3.0.1
14+
k8s.io/api v0.25.0
15+
k8s.io/apimachinery v0.25.0
16+
k8s.io/client-go v0.25.0
17+
sigs.k8s.io/secrets-store-csi-driver v1.3.3
1518
)
1619

1720
require (
@@ -21,49 +24,46 @@ require (
2124
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2225
github.com/davecgh/go-spew v1.1.1 // indirect
2326
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
24-
github.com/go-logr/logr v1.2.0 // indirect
27+
github.com/go-logr/logr v1.2.3 // indirect
2528
github.com/go-openapi/jsonpointer v0.19.5 // indirect
2629
github.com/go-openapi/jsonreference v0.19.5 // indirect
2730
github.com/go-openapi/swag v0.19.14 // indirect
2831
github.com/gofrs/flock v0.8.1 // indirect
2932
github.com/gogo/protobuf v1.3.2 // indirect
3033
github.com/golang/protobuf v1.5.2 // indirect
3134
github.com/google/gnostic v0.5.7-v3refs // indirect
32-
github.com/google/gofuzz v1.1.0 // indirect
35+
github.com/google/gofuzz v1.2.0 // indirect
3336
github.com/josharian/intern v1.0.0 // indirect
3437
github.com/json-iterator/go v1.1.12 // indirect
3538
github.com/mailru/easyjson v0.7.6 // indirect
3639
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
3740
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3841
github.com/modern-go/reflect2 v1.0.2 // indirect
3942
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
40-
github.com/prometheus/client_golang v1.12.1 // indirect
43+
github.com/prometheus/client_golang v1.12.2 // indirect
4144
github.com/prometheus/client_model v0.2.0 // indirect
4245
github.com/prometheus/common v0.32.1 // indirect
4346
github.com/prometheus/procfs v0.7.3 // indirect
4447
github.com/sony/gobreaker v0.5.0 // indirect
45-
go.opentelemetry.io/otel v0.20.0 // indirect
46-
go.opentelemetry.io/otel/exporters/metric/prometheus v0.20.0 // indirect
47-
go.opentelemetry.io/otel/metric v0.20.0 // indirect
4848
go.opentelemetry.io/otel/sdk v0.20.0 // indirect
4949
go.opentelemetry.io/otel/sdk/export/metric v0.20.0 // indirect
5050
go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect
5151
go.opentelemetry.io/otel/trace v0.20.0 // indirect
52-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
52+
golang.org/x/net v0.7.0 // indirect
5353
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
54-
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
55-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
56-
golang.org/x/text v0.3.7 // indirect
57-
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
54+
golang.org/x/sys v0.5.0 // indirect
55+
golang.org/x/term v0.5.0 // indirect
56+
golang.org/x/text v0.7.0 // indirect
57+
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
5858
google.golang.org/appengine v1.6.7 // indirect
59-
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
60-
google.golang.org/protobuf v1.27.1 // indirect
59+
google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 // indirect
60+
google.golang.org/protobuf v1.28.0 // indirect
6161
gopkg.in/inf.v0 v0.9.1 // indirect
6262
gopkg.in/yaml.v2 v2.4.0 // indirect
63-
k8s.io/klog/v2 v2.70.1 // indirect
64-
k8s.io/kube-openapi v0.0.0-20220603121420-31174f50af60 // indirect
65-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
66-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
67-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
63+
k8s.io/klog/v2 v2.80.1 // indirect
64+
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
65+
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448 // indirect
66+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
67+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
6868
sigs.k8s.io/yaml v1.3.0 // indirect
6969
)

0 commit comments

Comments
 (0)