You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not entirely sure if this is considered a bug.
Once a PersistentVolume is created it seems to only be deleted from disk when OrbStack is closed. This leads to a situation where in order to start fresh one would have to quit Orbstack and start it again, or use the deprecated "Recycle" reclaim policy. It is not enough to run kubectl delete and then kubectl apply again, as the data on the persistent volume will still be there even if the reclaim policy for the volume is "Delete".
To Reproduce
Create a manifest containing a PV, PVC and a container mounting that volume. Set persistentVolumeReclaimPolicy to "Delete".
kubectl apply -f manifest.yaml the manifest.
Log in to the container, create a file: touch SOMERANDOMFILE.
I would expect the volume to be deleted so that a fresh apply would be completely fresh. In my case the WordPress DB once initialized means I have to quit Orbstack before re-applying while testing. Or use Recycle as reclaim policy, which is deprecated.
This seems to be a bug with local-path-provisioner which does not honor Delete persistentVolumeReclaimPolicy. To work around the issue you can use PVC only without binding to a specific PV. Just remove PV manifest and volumeName attribute in the PVC manifest.
Describe the bug
I'm not entirely sure if this is considered a bug.
Once a PersistentVolume is created it seems to only be deleted from disk when OrbStack is closed. This leads to a situation where in order to start fresh one would have to quit Orbstack and start it again, or use the deprecated "Recycle" reclaim policy. It is not enough to run
kubectl delete
and thenkubectl apply
again, as the data on the persistent volume will still be there even if the reclaim policy for the volume is "Delete".To Reproduce
persistentVolumeReclaimPolicy
to "Delete".kubectl apply -f manifest.yaml
the manifest.touch SOMERANDOMFILE
.kubectl delete -f manifest.yaml
kubectl apply -f manifest.yaml
again.ls -al
.Here's an example manifest using Wordpress:
Expected behavior
I would expect the volume to be deleted so that a fresh apply would be completely fresh. In my case the WordPress DB once initialized means I have to quit Orbstack before re-applying while testing. Or use Recycle as reclaim policy, which is deprecated.
Diagnostic report (REQUIRED)
OrbStack info:
Version: 1.10.3
Commit: 2b5dd5f580d80a3d2494b7b40dde2ef46813cfc5 (v1.10.3)
System info:
macOS: 15.3.2 (24D81)
CPU: arm64, 10 cores
CPU model: Apple M1 Pro
Model: MacBookPro18,1
Memory: 16 GiB
Full report: https://orbstack.dev/_admin/diag/orbstack-diagreport_2025-03-24T09-23-53.871650Z.zip
Screenshots and additional context (optional)
No response
The text was updated successfully, but these errors were encountered: