Skip to content

Commit d219e79

Browse files
committed
Shorten the CSI registration path (#231)
# Description See #229
1 parent e714c03 commit d219e79

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ All notable changes to this project will be documented in this file.
77
### Changed
88

99
- operator-rs: 0.25.0 -> 0.27.1 ([#212]).
10+
- Shortened the registration socket path for Microk8s compatibility ([#231]).
11+
- After upgrading you will need to
12+
`rmdir /var/lib/kubelet/plugins_registry/secrets.stackable.tech-reg.sock` manually.
13+
This applies to *all* users, not just Microk8s.
1014

1115
[#212]: https://github.com/stackabletech/secret-operator/pull/212
16+
[#231]: https://github.com/stackabletech/secret-operator/pull/231
1217

1318
## [0.6.0] - 2022-11-07
1419

deploy/helm/secret-operator/templates/daemonset.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ spec:
6969
volumes:
7070
- name: registration-sock
7171
hostPath:
72-
path: /var/lib/kubelet/plugins_registry/secrets.stackable.tech-reg.sock
72+
# node-driver-registrar appends a driver-unique filename to this path to avoid conflicts
73+
# see https://github.com/stackabletech/secret-operator/issues/229 for why this path should not be too long
74+
path: /var/lib/kubelet/plugins_registry
7375
- name: csi
7476
hostPath:
7577
path: /var/lib/kubelet/plugins/secrets.stackable.tech/

0 commit comments

Comments
 (0)