Skip to content

Commit

Permalink
Prepare Release 1.4.0 (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
LKaemmerling authored Jun 23, 2020
1 parent 8ac5959 commit c7289bd
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 |

Expand Down
15 changes: 13 additions & 2 deletions deploy/kubernetes/hcloud-csi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -312,6 +321,8 @@ kind: Service
metadata:
name: hcloud-csi-node-metrics
namespace: kube-system
labels:
app: hcloud-csi
spec:
selector:
app: hcloud-csi
Expand Down
2 changes: 1 addition & 1 deletion 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 = "1.3.2"
PluginVersion = "1.4.0"

MaxVolumesPerNode = 16
MinVolumeSize = 10 // GB
Expand Down

0 comments on commit c7289bd

Please sign in to comment.