Skip to content
Snippets Groups Projects
Unverified Commit c7289bd9 authored by Lukas Kämmerling's avatar Lukas Kämmerling Committed by GitHub
Browse files

Prepare Release 1.4.0 (#130)

parent 8ac59597
Branches
Tags 35.23.1
No related merge requests found
......@@ -4,6 +4,8 @@
- Allow mounting of Hetzner Cloud Volumes as raw block volumes.
- Add label (`app: hcloud-csi`) to `hcloud-csi-controller-metrics` and `hcloud-csi-node-metrics`
- Update to hcloud-go 1.18.0
## v1.3.2
- Fix stuck volume terminating when the volume was already deleted
......
......@@ -31,7 +31,7 @@ enabling you to use Volumes within Kubernetes. Please note that this driver **re
Have a look at our [Version Matrix](README.md#version-matrix) to pick the correct deployment file.
```
kubectl apply -f https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.3.2/deploy/kubernetes/hcloud-csi.yml
kubectl apply -f https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.4.0/deploy/kubernetes/hcloud-csi.yml
```
4. To verify everything is working, create a persistent volume claim and a pod
......@@ -78,7 +78,7 @@ enabling you to use Volumes within Kubernetes. Please note that this driver **re
| Kubernetes | CSI Driver | Deployment File |
| ------------- | -----:| ------------------------------------------------------------------------------------------------------:|
| 1.16-1.18 | 1.3.2 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.3.2/deploy/kubernetes/hcloud-csi.yml |
| 1.16-1.18 | 1.4.0 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.4.0/deploy/kubernetes/hcloud-csi.yml |
| 1.14-1.15 | 1.1.5 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.1.5/deploy/kubernetes/hcloud-csi.yml |
| 1.13 | 1.1.5 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.1.5/deploy/kubernetes/hcloud-csi-1.13.yml |
......
......@@ -147,7 +147,7 @@ spec:
add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true
- name: hcloud-csi-driver
image: hetznercloud/hcloud-csi-driver:1.3.2
image: hetznercloud/hcloud-csi-driver:1.4.0
imagePullPolicy: Always
env:
- name: CSI_ENDPOINT
......@@ -209,6 +209,13 @@ spec:
labels:
app: hcloud-csi
spec:
tolerations:
- effect: NoExecute
operator: Exists
- effect: NoSchedule
operator: Exists
- key: CriticalAddonsOnly
operator: Exists
serviceAccount: hcloud-csi
containers:
- name: csi-node-driver-registrar
......@@ -231,7 +238,7 @@ spec:
securityContext:
privileged: true
- name: hcloud-csi-driver
image: hetznercloud/hcloud-csi-driver:1.3.2
image: hetznercloud/hcloud-csi-driver:1.4.0
imagePullPolicy: Always
env:
- name: CSI_ENDPOINT
......@@ -298,6 +305,8 @@ kind: Service
metadata:
name: hcloud-csi-controller-metrics
namespace: kube-system
labels:
app: hcloud-csi
spec:
selector:
app: hcloud-csi-controller
......@@ -312,6 +321,8 @@ kind: Service
metadata:
name: hcloud-csi-node-metrics
namespace: kube-system
labels:
app: hcloud-csi
spec:
selector:
app: hcloud-csi
......
......@@ -2,7 +2,7 @@ package driver
const (
PluginName = "csi.hetzner.cloud"
PluginVersion = "1.3.2"
PluginVersion = "1.4.0"
MaxVolumesPerNode = 16
MinVolumeSize = 10 // GB
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment