Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 2.9.0 #682

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"2.8.0"}
{".":"2.9.0"}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [2.9.0](https://github.com/hetznercloud/csi-driver/compare/v2.8.0...v2.9.0) (2024-08-08)


### Features

* truncate poll exponential backoff function to max 10s ([#674](https://github.com/hetznercloud/csi-driver/issues/674)) ([5785418](https://github.com/hetznercloud/csi-driver/commit/57854187478ee5bfb5f6eff91173dc54f7f04f39))


### Bug Fixes

* xfs options compatibility between alpine and node kernel ([#689](https://github.com/hetznercloud/csi-driver/issues/689)) ([13d853b](https://github.com/hetznercloud/csi-driver/commit/13d853bfe821dc155df8c9eb30074107f732fa2e)), closes [#648](https://github.com/hetznercloud/csi-driver/issues/648)

## [2.8.0](https://github.com/hetznercloud/csi-driver/compare/v2.7.1...v2.8.0) (2024-06-24)


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

- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.8.0 # x-release-please-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.9.0 # x-release-please-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.8.0 # x-release-please-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.9.0 # x-release-please-version
imagePullPolicy: IfNotPresent
command: [/bin/hcloud-csi-driver-node]
volumeMounts:
Expand Down Expand Up @@ -424,7 +424,7 @@ spec:
name: socket-dir

- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.8.0 # x-release-please-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.9.0 # x-release-please-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 @@ -297,7 +297,7 @@ spec:
cpu: 12m
memory: 22Mi
- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.8.0 # x-release-please-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.9.0 # x-release-please-version
imagePullPolicy: Always
command: [/bin/hcloud-csi-driver-node]
volumeMounts:
Expand Down Expand Up @@ -551,7 +551,7 @@ spec:
name: socket-dir

- name: hcloud-csi-driver
image: docker.io/hetznercloud/hcloud-csi-driver:v2.8.0 # x-release-please-version
image: docker.io/hetznercloud/hcloud-csi-driver:v2.9.0 # x-release-please-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.8.0
version: 2.9.0
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.8.0" // x-release-please-version
PluginVersion = "2.9.0" // x-release-please-version

MaxVolumesPerNode = 16
MinVolumeSize = 10 // GB
Expand Down
Loading