Skip to content

Commit 413768b

Browse files
committed
docs
1 parent e5762a1 commit 413768b

File tree

3 files changed

+80
-0
lines changed

3 files changed

+80
-0
lines changed

docs/pv-mounter.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## pv-mounter
2+
3+
Mount and unmount Kubernetes PersistentVolumes using SSHFS
4+
5+
### Synopsis
6+
7+
pv-mounter is a kubectl plugin that allows you to easily mount and unmount
8+
Kubernetes PersistentVolumeClaims (PVCs) locally via SSHFS.
9+
10+
It transparently manages proxy pods, ephemeral containers, port-forwarding,
11+
and SSHFS connections.
12+
13+
### Options
14+
15+
```
16+
-h, --help help for pv-mounter
17+
```
18+
19+
### SEE ALSO
20+
21+
* [pv-mounter clean](pv-mounter_clean.md) - Clean up resources created by pv-mounter
22+
* [pv-mounter mount](pv-mounter_mount.md) - Mount a PersistentVolumeClaim (PVC) to a local directory using SSHFS.
23+
24+
###### Auto generated by spf13/cobra on 16-Mar-2025

docs/pv-mounter_clean.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## pv-mounter clean
2+
3+
Clean up resources created by pv-mounter
4+
5+
### Synopsis
6+
7+
Clean up resources created by pv-mounter.
8+
9+
This command unmounts the local directory, terminates port-forwarding,
10+
removes any proxy pods created, and cleans up ephemeral containers.
11+
12+
```
13+
pv-mounter clean <namespace> <pvc-name> <local-mount-point> [flags]
14+
```
15+
16+
### Options
17+
18+
```
19+
-h, --help help for clean
20+
```
21+
22+
### SEE ALSO
23+
24+
* [pv-mounter](pv-mounter.md) - Mount and unmount Kubernetes PersistentVolumes using SSHFS
25+
26+
###### Auto generated by spf13/cobra on 16-Mar-2025

docs/pv-mounter_mount.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## pv-mounter mount
2+
3+
Mount a PersistentVolumeClaim (PVC) to a local directory using SSHFS.
4+
5+
### Synopsis
6+
7+
Mount a PersistentVolumeClaim (PVC) to a local directory using SSHFS.
8+
9+
This command sets up necessary Kubernetes resources and establishes an SSHFS connection
10+
to mount the specified PVC locally.
11+
12+
```
13+
pv-mounter mount [flags] <namespace> <pvc-name> <local-mount-point>
14+
```
15+
16+
### Options
17+
18+
```
19+
--debug Enable debug mode to print additional information (default: false)
20+
-h, --help help for mount
21+
--image string Custom container image for the volume-exposer (optional)
22+
--image-secret string Kubernetes secret name for accessing private registry (optional)
23+
--needs-root Mount the filesystem using the root account (default: false)
24+
```
25+
26+
### SEE ALSO
27+
28+
* [pv-mounter](pv-mounter.md) - Mount and unmount Kubernetes PersistentVolumes using SSHFS
29+
30+
###### Auto generated by spf13/cobra on 16-Mar-2025

0 commit comments

Comments
 (0)