Skip to content

Commit 4716b26

Browse files
committed
release: update manifest and helm charts for v1.4.6
Signed-off-by: Nilekh Chaudhari <[email protected]>
1 parent d5fbc3e commit 4716b26

27 files changed

+445
-363
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ $(GOLANGCI_LINT): ## Build golangci-lint from tools folder.
177177

178178
$(KUSTOMIZE): ## Build kustomize from tools folder.
179179
cd $(TOOLS_MOD_DIR) && \
180-
GOPROXY=$(GOPROXY) go build -tags=tools -o $(TOOLS_BIN_DIR)/kustomize sigs.k8s.io/kustomize/kustomize/v4
180+
GOPROXY=$(GOPROXY) go build -tags=tools -o $(TOOLS_BIN_DIR)/kustomize sigs.k8s.io/kustomize/kustomize/v5
181181

182182
$(PROTOC_GEN_GO): ## Build protoc-gen-go from tools folder.
183183
cd $(TOOLS_MOD_DIR) && \

apis/v1/zz_generated.deepcopy.go

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/zz_generated.deepcopy.go

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: secrets-store-csi-driver
3-
version: 1.4.5
4-
appVersion: 1.4.5
3+
version: 1.4.6
4+
appVersion: 1.4.6
55
kubeVersion: ">=1.16.0-0"
66
description: A Helm chart to install the SecretsStore CSI Driver inside a Kubernetes cluster.
77
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png

charts/secrets-store-csi-driver/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ helm install csi-secrets-store secrets-store-csi-driver/secrets-store-csi-driver
2727
The following table lists the configurable parameters of the csi-secrets-store-provider-azure chart and their default values.
2828

2929
| Parameter | Description | Default |
30-
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------- |
30+
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |---------------------------------------------------------|
3131
| `nameOverride` | String to partially override secrets-store-csi-driver.fullname template with a string (will prepend the release name) | `""` |
3232
| `commonLabels` | Labels to apply to all resources | `""` |
3333
| `fullnameOverride` | String to fully override secrets-store-csi-driver.fullname template with a string | `""` |
3434
| `linux.image.repository` | Linux image repository | `registry.k8s.io/csi-secrets-store/driver` |
3535
| `linux.image.pullPolicy` | Linux image pull policy | `IfNotPresent` |
36-
| `linux.image.tag` | Linux image tag | `v1.4.5` |
36+
| `linux.image.tag` | Linux image tag | `v1.4.6` |
3737
| `linux.image.digest` | Linux image digest, image pull from digest instead of tag if specified | `""` |
3838
| `linux.crds.enabled` | If the CRDs should be managed by the chart | `true` |
3939
| `linux.crds.image.repository` | Linux crds image repository | `registry.k8s.io/csi-secrets-store/driver-crds` |
4040
| `linux.crds.image.pullPolicy` | Linux crds image pull policy | `IfNotPresent` |
41-
| `linux.crds.image.tag` | Linux crds image tag | `v1.4.5` |
41+
| `linux.crds.image.tag` | Linux crds image tag | `v1.4.6` |
4242
| `linux.crds.resources` | The resource request/limits for the linux crds container image | `{}` |
4343
| `linux.crds.podLabels` | Linux *Pod* labels appended to CRD helm hook job pods | `{}` |
4444
| `linux.affinity` | Linux affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
@@ -72,7 +72,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
7272
| `linux.updateStrategy` | Configure a custom update strategy for the daemonset on linux nodes | `RollingUpdate with 1 maxUnavailable` |
7373
| `windows.image.repository` | Windows image repository | `registry.k8s.io/csi-secrets-store/driver` |
7474
| `windows.image.pullPolicy` | Windows image pull policy | `IfNotPresent` |
75-
| `windows.image.tag` | Windows image tag | `v1.4.5` |
75+
| `windows.image.tag` | Windows image tag | `v1.4.6` |
7676
| `windows.image.digest` | Windows image digest, image pull from digest instead of tag if specified | `""` |
7777
| `windows.affinity` | Windows affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
7878
| `windows.driver.resources` | The resource request/limits for the windows secrets-store container image | `limits: 400m CPU, 400Mi; requests: 50m CPU, 100Mi` |

charts/secrets-store-csi-driver/crds/secrets-store.csi.x-k8s.io_secretproviderclasses.yaml

Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.12.1
6+
controller-gen.kubebuilder.io/version: v0.16.3
77
name: secretproviderclasses.secrets-store.csi.x-k8s.io
88
spec:
99
group: secrets-store.csi.x-k8s.io
@@ -21,14 +21,19 @@ spec:
2121
API
2222
properties:
2323
apiVersion:
24-
description: 'APIVersion defines the versioned schema of this representation
25-
of an object. Servers should convert recognized schemas to the latest
26-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
24+
description: |-
25+
APIVersion defines the versioned schema of this representation of an object.
26+
Servers should convert recognized schemas to the latest internal value, and
27+
may reject unrecognized values.
28+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
2729
type: string
2830
kind:
29-
description: 'Kind is a string value representing the REST resource this
30-
object represents. Servers may infer this from the endpoint the client
31-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
description: |-
32+
Kind is a string value representing the REST resource this object represents.
33+
Servers may infer this from the endpoint the client submits requests to.
34+
Cannot be updated.
35+
In CamelCase.
36+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3237
type: string
3338
metadata:
3439
type: object
@@ -96,14 +101,19 @@ spec:
96101
API
97102
properties:
98103
apiVersion:
99-
description: 'APIVersion defines the versioned schema of this representation
100-
of an object. Servers should convert recognized schemas to the latest
101-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
104+
description: |-
105+
APIVersion defines the versioned schema of this representation of an object.
106+
Servers should convert recognized schemas to the latest internal value, and
107+
may reject unrecognized values.
108+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
102109
type: string
103110
kind:
104-
description: 'Kind is a string value representing the REST resource this
105-
object represents. Servers may infer this from the endpoint the client
106-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
111+
description: |-
112+
Kind is a string value representing the REST resource this object represents.
113+
Servers may infer this from the endpoint the client submits requests to.
114+
Cannot be updated.
115+
In CamelCase.
116+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
107117
type: string
108118
metadata:
109119
type: object
@@ -160,8 +170,9 @@ spec:
160170
properties:
161171
byPod:
162172
items:
163-
description: ByPodStatus defines the state of SecretProviderClass
164-
as seen by an individual controller
173+
description: |-
174+
ByPodStatus defines the state of SecretProviderClass as seen by
175+
an individual controller
165176
properties:
166177
id:
167178
description: id of the pod that wrote the status

charts/secrets-store-csi-driver/crds/secrets-store.csi.x-k8s.io_secretproviderclasspodstatuses.yaml

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.12.1
6+
controller-gen.kubebuilder.io/version: v0.16.3
77
name: secretproviderclasspodstatuses.secrets-store.csi.x-k8s.io
88
spec:
99
group: secrets-store.csi.x-k8s.io
@@ -21,14 +21,19 @@ spec:
2121
API
2222
properties:
2323
apiVersion:
24-
description: 'APIVersion defines the versioned schema of this representation
25-
of an object. Servers should convert recognized schemas to the latest
26-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
24+
description: |-
25+
APIVersion defines the versioned schema of this representation of an object.
26+
Servers should convert recognized schemas to the latest internal value, and
27+
may reject unrecognized values.
28+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
2729
type: string
2830
kind:
29-
description: 'Kind is a string value representing the REST resource this
30-
object represents. Servers may infer this from the endpoint the client
31-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
31+
description: |-
32+
Kind is a string value representing the REST resource this object represents.
33+
Servers may infer this from the endpoint the client submits requests to.
34+
Cannot be updated.
35+
In CamelCase.
36+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3237
type: string
3338
metadata:
3439
type: object
@@ -67,14 +72,19 @@ spec:
6772
API
6873
properties:
6974
apiVersion:
70-
description: 'APIVersion defines the versioned schema of this representation
71-
of an object. Servers should convert recognized schemas to the latest
72-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
75+
description: |-
76+
APIVersion defines the versioned schema of this representation of an object.
77+
Servers should convert recognized schemas to the latest internal value, and
78+
may reject unrecognized values.
79+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
7380
type: string
7481
kind:
75-
description: 'Kind is a string value representing the REST resource this
76-
object represents. Servers may infer this from the endpoint the client
77-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
82+
description: |-
83+
Kind is a string value representing the REST resource this object represents.
84+
Servers may infer this from the endpoint the client submits requests to.
85+
Cannot be updated.
86+
In CamelCase.
87+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
7888
type: string
7989
metadata:
8090
type: object

charts/secrets-store-csi-driver/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ linux:
22
enabled: true
33
image:
44
repository: registry.k8s.io/csi-secrets-store/driver
5-
tag: v1.4.5
5+
tag: v1.4.6
66
#digest: sha256:
77
pullPolicy: IfNotPresent
88

99
crds:
1010
enabled: true
1111
image:
1212
repository: registry.k8s.io/csi-secrets-store/driver-crds
13-
tag: v1.4.5
13+
tag: v1.4.6
1414
pullPolicy: IfNotPresent
1515
## Optionally override resource limits for crd hooks(jobs)
1616
resources: {}
@@ -110,7 +110,7 @@ windows:
110110
enabled: false
111111
image:
112112
repository: registry.k8s.io/csi-secrets-store/driver
113-
tag: v1.4.5
113+
tag: v1.4.6
114114
#digest: sha256:
115115
pullPolicy: IfNotPresent
116116

0 commit comments

Comments
 (0)