Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
csi-driver
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
hetznercloud
csi-driver
Commits
c7289bd9
Unverified
Commit
c7289bd9
authored
4 years ago
by
Lukas Kämmerling
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Prepare Release 1.4.0 (#130)
parent
8ac59597
Branches
Branches containing commit
Tags
35.23.1
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGES.md
+2
-0
2 additions, 0 deletions
CHANGES.md
README.md
+2
-2
2 additions, 2 deletions
README.md
deploy/kubernetes/hcloud-csi.yml
+13
-2
13 additions, 2 deletions
deploy/kubernetes/hcloud-csi.yml
driver/driver.go
+1
-1
1 addition, 1 deletion
driver/driver.go
with
18 additions
and
5 deletions
CHANGES.md
+
2
−
0
View file @
c7289bd9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
README.md
+
2
−
2
View file @
c7289bd9
...
...
@@ -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 |
...
...
This diff is collapsed.
Click to expand it.
deploy/kubernetes/hcloud-csi.yml
+
13
−
2
View file @
c7289bd9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
driver/driver.go
+
1
−
1
View file @
c7289bd9
...
...
@@ -2,7 +2,7 @@ package driver
const
(
PluginName
=
"csi.hetzner.cloud"
PluginVersion
=
"1.
3.2
"
PluginVersion
=
"1.
4.0
"
MaxVolumesPerNode
=
16
MinVolumeSize
=
10
// GB
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment