File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changes
22
3- ## master
3+ ## v1.5.0
44
55- Allow using the node name as node indicator instead of using the
66 metadata service
7- - Allow to tune the log level using the ` LOG_LEVEL ` environment variable.
7+ - Allow to tune the log level using the ` LOG_LEVEL ` environment variable
8+ - Update k8s dependencies to v1.17.12
9+ - Update Go to 1.15
10+ - Update hcloud-go to 1.22.0
11+ - Update csi driver container to alpine linux v3.12
12+ - Note: As of this release all versions are end-to-end tested against the
13+ official Kubernetes testsuite, as a result a few smaller issues where fixed
814
915## v1.4.0
1016
Original file line number Diff line number Diff line change @@ -78,9 +78,8 @@ enabling you to use Volumes within Kubernetes. Please note that this driver **re
7878
7979| Kubernetes | CSI Driver | Deployment File |
8080| ------------- | -----:| ------------------------------------------------------------------------------------------------------:|
81- | 1.16-1.18 | 1.4.0 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.4.0/deploy/kubernetes/hcloud-csi.yml |
82- | 1.14-1.15 | 1.1.5 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.1.5/deploy/kubernetes/hcloud-csi.yml |
83- | 1.13 | 1.1.5 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.1.5/deploy/kubernetes/hcloud-csi-1.13.yml |
81+ | 1.17-1.19 | 1.5.0 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.5.0/deploy/kubernetes/hcloud-csi.yml |
82+ | 1.16 | 1.4.0 | https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.4.0/deploy/kubernetes/hcloud-csi.yml |
8483
8584
8685## E2E Tests
Load diff This file was deleted.
Original file line number Diff line number Diff line change @@ -147,13 +147,18 @@ spec:
147147 add : ["SYS_ADMIN"]
148148 allowPrivilegeEscalation : true
149149 - name : hcloud-csi-driver
150- image : hetznercloud/hcloud-csi-driver:1.4 .0
150+ image : hetznercloud/hcloud-csi-driver:v1.5 .0
151151 imagePullPolicy : Always
152152 env :
153153 - name : CSI_ENDPOINT
154154 value : unix:///var/lib/csi/sockets/pluginproxy/csi.sock
155155 - name : METRICS_ENDPOINT
156156 value : 0.0.0.0:9189
157+ - name : KUBE_NODE_NAME
158+ valueFrom :
159+ fieldRef :
160+ apiVersion : v1
161+ fieldPath : spec.nodeName
157162 - name : HCLOUD_TOKEN
158163 valueFrom :
159164 secretKeyRef :
@@ -238,7 +243,7 @@ spec:
238243 securityContext :
239244 privileged : true
240245 - name : hcloud-csi-driver
241- image : hetznercloud/hcloud-csi-driver:1.4 .0
246+ image : hetznercloud/hcloud-csi-driver:v1.5 .0
242247 imagePullPolicy : Always
243248 env :
244249 - name : CSI_ENDPOINT
@@ -250,6 +255,11 @@ spec:
250255 secretKeyRef :
251256 name : hcloud-csi
252257 key : token
258+ - name : KUBE_NODE_NAME
259+ valueFrom :
260+ fieldRef :
261+ apiVersion : v1
262+ fieldPath : spec.nodeName
253263 volumeMounts :
254264 - name : kubelet-dir
255265 mountPath : /var/lib/kubelet
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package driver
22
33const (
44 PluginName = "csi.hetzner.cloud"
5- PluginVersion = "1.4 .0"
5+ PluginVersion = "1.5 .0"
66
77 MaxVolumesPerNode = 16
88 MinVolumeSize = 10 // GB
You can’t perform that action at this time.
0 commit comments