Skip to content

Commit

Permalink
Upgrade secrets store csi driver version to 1.3.3 (#22)
Browse files Browse the repository at this point in the history
* upgraded secrets store csi driver version to 1.3.3
  • Loading branch information
rajashekhargundeti authored May 26, 2023
1 parent 31c8ebc commit 7f6093b
Show file tree
Hide file tree
Showing 499 changed files with 41,078 additions and 8,446 deletions.
6 changes: 3 additions & 3 deletions GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,14 +334,14 @@ All changes to those modules should be reflected in the remote VCS repository.
```
This command will update sources for that module in `vendor/` folder.
1. Then commit those changes.
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
<a name="versioning"></a>
## Versioning
Each build publishes 2 artifacts: Docker image and Helm chart.
Both of these artifacts use SemVer 2.0.0 for versioning.
That means that developers must increment both Docker image and Helm chart versions, otherwise, the build will fail:
* Bump `version` field in `ocibuild.conf` file for Docker image;
* Specify the same version in `appVersion` field in `charts/oci-secrets-store-csi-driver-provider/Chart.yaml` file;
* Bump `version` field in `charts/oci-secrets-store-csi-driver-provider/Chart.yaml` file.
Expand All @@ -357,7 +357,7 @@ Since this tool is standalone, the developers have to control the version themse

<a name="ci-setup"></a>
## CI Setup
GitHub Actions is used to implement Continuous integration pipeline.
GitHub Actions is used to implement Continuous Integration pipeline.
Location in the code base: .github/workflows
Github workflows:
1. unit-tests.yaml – Runs unit test cases
Expand All @@ -370,7 +370,7 @@ Github workflows:
* On pushing a commit
* dependencies:
* None
2. build-n-push.yaml – builds and pushes to image registry
2. build-n-push.yaml – builds and pushes image to image registry
* Functionality:
* builds docker image
* pushes to registry
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

# FROM docker-remote.artifactory.oci.oraclecorp.com/oraclelinux:7-slim AS build
FROM golang:1.17.5 as build
FROM golang:1.19 as build

# Odo Base Image Support used to configure yum:
# * pull rpms from artifactory by default and gpgcheck the repos that support it;
Expand Down
6 changes: 3 additions & 3 deletions charts/oci-secrets-store-csi-driver-provider/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: secrets-store-csi-driver
repository: https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts
version: 1.2.0
digest: sha256:26b7ecb4b3672bbe96ded80ab272e72c48adaa085ceb1ddd542099571348c62f
generated: "2022-09-23T22:57:26.716313+05:30"
version: 1.3.3
digest: sha256:448bd214c20f278f41d43688c8c5ef582fb6fea421bd36475d1298814fe8acce
generated: "2023-05-26T14:51:25.764132+05:30"
4 changes: 2 additions & 2 deletions charts/oci-secrets-store-csi-driver-provider/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
apiVersion: v2
name: oci-secrets-store-csi-driver-provider
description: OCI Vault provider for the Secrets Store CSI driver.
version: 0.2.9
version: 0.3.0
type: application

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

maintainers:
Expand Down
Binary file not shown.
Binary file not shown.
15 changes: 0 additions & 15 deletions charts/oci-secrets-store-csi-driver-provider/values.local.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions charts/oci-secrets-store-csi-driver-provider/values.oke.yaml

This file was deleted.

48 changes: 24 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
module github.com/oracle-samples/oci-secrets-store-csi-driver-provider

go 1.17
go 1.19

require (
github.com/oracle/oci-go-sdk/v65 v65.3.0
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.26.1
go.opentelemetry.io/otel v0.20.0
go.opentelemetry.io/otel/exporters/metric/prometheus v0.20.0
go.opentelemetry.io/otel/metric v0.20.0
google.golang.org/grpc v1.47.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
k8s.io/api v0.24.4
k8s.io/apimachinery v0.24.4
k8s.io/client-go v0.24.4
sigs.k8s.io/secrets-store-csi-driver v1.2.4
gopkg.in/yaml.v3 v3.0.1
k8s.io/api v0.25.0
k8s.io/apimachinery v0.25.0
k8s.io/client-go v0.25.0
sigs.k8s.io/secrets-store-csi-driver v1.3.3
)

require (
Expand All @@ -21,49 +24,46 @@ require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
github.com/go-logr/logr v1.2.0 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.19.5 // indirect
github.com/go-openapi/swag v0.19.14 // indirect
github.com/gofrs/flock v0.8.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/gnostic v0.5.7-v3refs // indirect
github.com/google/gofuzz v1.1.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/prometheus/client_golang v1.12.1 // indirect
github.com/prometheus/client_golang v1.12.2 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/sony/gobreaker v0.5.0 // indirect
go.opentelemetry.io/otel v0.20.0 // indirect
go.opentelemetry.io/otel/exporters/metric/prometheus v0.20.0 // indirect
go.opentelemetry.io/otel/metric v0.20.0 // indirect
go.opentelemetry.io/otel/sdk v0.20.0 // indirect
go.opentelemetry.io/otel/sdk/export/metric v0.20.0 // indirect
go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect
go.opentelemetry.io/otel/trace v0.20.0 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
google.golang.org/protobuf v1.27.1 // indirect
google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/klog/v2 v2.70.1 // indirect
k8s.io/kube-openapi v0.0.0-20220603121420-31174f50af60 // indirect
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
k8s.io/klog/v2 v2.80.1 // indirect
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448 // indirect
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)
Loading

0 comments on commit 7f6093b

Please sign in to comment.