Skip to content

Commit ee10656

Browse files
authored
Add note about Tanzu kubeletDir (#575)
* Add note about Tanzu kubeletDir Fixes #574 * Update ring to satisfy cargo deny * Ignore RUSTSEC-2025-0012 for now
1 parent 12d0b17 commit ee10656

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deny.toml

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ ignore = [
2929
#
3030
# TODO: Remove after https://github.com/kube-rs/kube/pull/1652 is merged
3131
"RUSTSEC-2024-0384",
32+
33+
# https://rustsec.org/advisories/RUSTSEC-2025-0012
34+
# "backoff" is unmainted.
35+
#
36+
# Upstream (kube) has switched to backon in 0.99.0, and an upgrade is scheduled on our end. In the meantime,
37+
# this is a very low-severity problem.
38+
#
39+
# TODO: Remove after upgrading to kube 0.99.
40+
"RUSTSEC-2025-0012",
3241
]
3342

3443
[bans]

docs/modules/secret-operator/pages/installation.adoc

+5
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,8 @@ In some cases IBM cloud has the kubelet directory located at `/var/data/kubelet/
5555
`failed to publish volume error=status: Unavailable, message: "failed to create secret parent dir /var/data/kubelet/pods/<POD_ID>/volumes/kubernetes.io~csi/pvc-<PVC_ID>/mount: No such file or directory (os error 2)"`
5656

5757
In case you are encountering the mentioned error (or secret-operator does not work on your IBM cloud at all), you need to add the argument `--set kubeletDir=/var/data/kubelet` to the `helm install` command.
58+
59+
=== VMware Tanzu
60+
61+
VMware Tanzu uses a non-standard Kubelet state directory. Installing secret-operator on Tanzu requires the argument
62+
`--set kubeletDir=/var/vcap/data/kubelet` to be added to the `helm install` command.

0 commit comments

Comments
 (0)