Skip to content

Commit

Permalink
Merge pull request #2043 from kubernetes-sigs/release-1.31
Browse files Browse the repository at this point in the history
Release 1.31
  • Loading branch information
k8s-ci-robot committed May 15, 2024
2 parents 4f10531 + 885ab27 commit a24e2ad
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# v1.31.0
### Notable Changes
* Add Alpha Support for Windows HostProcess Containers ([#2011](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2011), [@torredil](https://github.com/torredil))
* Decrease median dynamic provisioning time by 1.5 seconds ([#2021](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2021), [@AndrewSirenko](https://github.com/AndrewSirenko))

### Bug Fixes
* Sanitize CSI RPC request logs ([#2037](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2037), [@torredil](https://github.com/torredil))

### Improvements
* Inject volumeWaitParameters dependency ([#2022](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2022), [@AndrewSirenko](https://github.com/AndrewSirenko))
* Implement separate coalescer package and unit tests ([#2024](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2024), [@ConnorJC3](https://github.com/ConnorJC3))
* Replace coalescer implementation with new coalescer package ([#2025](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2025), [@ConnorJC3](https://github.com/ConnorJC3))
* Add make cluster/image command; Build image and cluster in parallel for CI ([#2028](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2028), [@ConnorJC3](https://github.com/ConnorJC3))
* Tune batched EC2 Describe* maxDelay ([#2029](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2029), [@AndrewSirenko](https://github.com/AndrewSirenko))


# v1.30.0
### Notable Changes
* Add retry manager to reduce RateLimitExceeded errors ([#2010](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2010), [@AndrewSirenko](https://github.com/AndrewSirenko))
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

## Variables/Functions

VERSION?=v1.30.0
VERSION?=v1.31.0

PKG=github.com/kubernetes-sigs/aws-ebs-csi-driver
GIT_COMMIT?=$(shell git rev-parse HEAD)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ The [Amazon Elastic Block Store](https://aws.amazon.com/ebs/) Container Storage

| Driver Version | [registry.k8s.io](https://kubernetes.io/blog/2022/11/28/registry-k8s-io-faster-cheaper-ga/) Image | [ECR Public](https://gallery.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver) Image |
|----------------|---------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
| v1.31.0 | registry.k8s.io/provider-aws/aws-ebs-csi-driver:v1.31.0 | public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.31.0 |
| v1.30.0 | registry.k8s.io/provider-aws/aws-ebs-csi-driver:v1.30.0 | public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.30.0 |
| v1.29.1 | registry.k8s.io/provider-aws/aws-ebs-csi-driver:v1.29.1 | public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.29.1 |

## Releases

Expand Down
7 changes: 7 additions & 0 deletions charts/aws-ebs-csi-driver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Helm chart
## v2.31.0
* Bump driver version to `v1.31.0`
* Expose dnsConfig in Helm Chart for Custom DNS Configuration ([#2034](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2045), [@omerap12](https://github.com/omerap12))
* Make scrape interval configurable ([#2035](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2035), [@omerap12](https://github.com/omerap12))
* Add defaultStorageClass parameter ([#2039](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2039), [@torredil](https://github.com/torredil))
* Upgrade sidecar containers ([#2041](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2041), [@torredil](https://github.com/torredil))

## v2.30.0
* Bump driver version to `v1.30.0`
* Update voluemessnapshotcontents/status RBAC ([#1991](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/1991), [@AndrewSirenko](https://github.com/AndrewSirenko))
Expand Down
4 changes: 2 additions & 2 deletions charts/aws-ebs-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: 1.30.0
appVersion: 1.31.0
name: aws-ebs-csi-driver
description: A Helm chart for AWS EBS CSI Driver
version: 2.30.0
version: 2.31.0
kubeVersion: ">=1.17.0-0"
home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
sources:
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
runAsUser: 1000
containers:
- name: ebs-plugin
image: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.30.0
image: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.31.0
imagePullPolicy: IfNotPresent
args:
# - {all,controller,node} # specify the driver mode
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
runAsUser: 0
containers:
- name: ebs-plugin
image: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.30.0
image: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.31.0
imagePullPolicy: IfNotPresent
args:
- node
Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ You may deploy the EBS CSI driver via Kustomize, Helm, or as an [Amazon EKS mana

#### Kustomize
```sh
kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.30"
kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.31"
```

*Note: Using the master branch to deploy the driver is not supported as the master branch may contain upcoming features incompatible with the currently released stable version of the driver.*
Expand Down

0 comments on commit a24e2ad

Please sign in to comment.