Skip to content

Commit

Permalink
chore(main): release v2.12.0 (#817)
Browse files Browse the repository at this point in the history
<!-- section-start changelog -->
We are pleased to announce improvements to our Nomad support. While
official support is not available, we have developed end-to-end tests
that cover the core features of a CSI driver. These tests are integrated
into our CI pipeline and validate compatibility with the latest Nomad
version.

### Features

- **nomad**: improved nomad support (#798)
- support ReadWriteOncePod (#857)
- add support and tests for Kubernetes 1.32 (#844)

### Bug Fixes

- use extraVolumeMounts for node in daemonset (#843)

<!-- section-end changelog -->

---

<details>
<summary><h4>PR by <a
href="https://github.com/apricote/releaser-pleaser">releaser-pleaser</a>
🤖</h4></summary>

If you want to modify the proposed release, add you overrides here. You
can learn more about the options in the docs.

## Release Notes

### Prefix / Start

This will be added to the start of the release notes.

```rp-prefix
We are pleased to announce improvements to our Nomad support. While official support is not available, we have developed end-to-end tests that cover the core features of a CSI driver. These tests are integrated into our CI pipeline and validate compatibility with the latest Nomad version.
```

### Suffix / End

This will be added to the end of the release notes.

```rp-suffix
```

</details>

Co-authored-by: releaser-pleaser <>
  • Loading branch information
hcloud-bot authored Jan 22, 2025
1 parent b87c19e commit de3bb84
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 10 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [v2.12.0](https://github.com/hetznercloud/csi-driver/releases/tag/v2.12.0)

We are pleased to announce improvements to our Nomad support. While official support is not available, we have developed end-to-end tests that cover the core features of a CSI driver. These tests are integrated into our CI pipeline and validate compatibility with the latest Nomad version.

### Features

- **nomad**: improved nomad support (#798)
- support ReadWriteOncePod (#857)
- add support and tests for Kubernetes 1.32 (#844)

### Bug Fixes

- use extraVolumeMounts for node in daemonset (#843)

## [v2.11.0](https://github.com/hetznercloud/csi-driver/releases/tag/v2.11.0)

### Features
Expand Down
4 changes: 2 additions & 2 deletions chart/.snapshots/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ spec:
limits: {}
requests: {}
- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.11.0 # x-releaser-pleaser-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.12.0 # x-releaser-pleaser-version
imagePullPolicy: IfNotPresent
command: [/bin/hcloud-csi-driver-node]
volumeMounts:
Expand Down Expand Up @@ -323,7 +323,7 @@ spec:
name: socket-dir

- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.11.0 # x-releaser-pleaser-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.12.0 # x-releaser-pleaser-version
imagePullPolicy: IfNotPresent
command: [/bin/hcloud-csi-driver-controller]
env:
Expand Down
4 changes: 2 additions & 2 deletions chart/.snapshots/example-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ spec:
cpu: 10m
memory: 20Mi
- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.11.0 # x-releaser-pleaser-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.12.0 # x-releaser-pleaser-version
imagePullPolicy: IfNotPresent
command: [/bin/hcloud-csi-driver-node]
volumeMounts:
Expand Down Expand Up @@ -433,7 +433,7 @@ spec:
name: socket-dir

- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.11.0 # x-releaser-pleaser-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.12.0 # x-releaser-pleaser-version
imagePullPolicy: IfNotPresent
command: [/bin/hcloud-csi-driver-controller]
env:
Expand Down
4 changes: 2 additions & 2 deletions chart/.snapshots/full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ spec:
cpu: 12m
memory: 22Mi
- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.11.0 # x-releaser-pleaser-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.12.0 # x-releaser-pleaser-version
imagePullPolicy: Always
command: [/bin/hcloud-csi-driver-node]
volumeMounts:
Expand Down Expand Up @@ -555,7 +555,7 @@ spec:
name: socket-dir

- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.11.0 # x-releaser-pleaser-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.12.0 # x-releaser-pleaser-version
imagePullPolicy: Always
command: [/bin/hcloud-csi-driver-controller]
env:
Expand Down
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ maintainers:
- name: Hetzner Cloud
email: [email protected]
url: https://github.com/hetznercloud
version: 2.11.0 # x-releaser-pleaser-version
version: 2.12.0 # x-releaser-pleaser-version
4 changes: 2 additions & 2 deletions deploy/kubernetes/hcloud-csi.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/driver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package driver

const (
PluginName = "csi.hetzner.cloud"
PluginVersion = "2.11.0" // x-releaser-pleaser-version
PluginVersion = "2.12.0" // x-releaser-pleaser-version

MaxVolumesPerNode = 16
MinVolumeSize = 10 // GB
Expand Down

0 comments on commit de3bb84

Please sign in to comment.