~ Remotefs kube client ~
Developed by @veeso
Current version: 0.4.0 (29/09/2024)
remotefs client implementation for Kube.
First of all you need to add remotefs and the client to your project dependencies:
remotefs = "^0.3"
remotefs-kube = "^0.4"these features are supported:
find: enablefind()method for RemoteFs. (enabled by default)no-log: disable logging. By default, this library will log via thelogcrate.
The library provides two different clients:
- KubeMultiPodFs client
- KubeContainerFs client
The MultiPod client gives access to all the pods with their own containers in a namespace.
This client creates an abstract file system with the following structure
- / (root)
- pod-a
- container-a
- / (container-a root)
- /bin
- /home
- ...
- / (container-a root)
- container-b
- / (container-b root)
- ...
- / (container-b root)
- container-a
- pod-b
- container-c
- / (container-c root)
- ...
- / (container-c root)
- container-c
- pod-a
So paths have the following structure: /pod-name/container-name/path/to/file.
// import remotefs trait and client
use remotefs::RemoteFs;
use remotefs_kube::KubeMultiPodFs;
use std::path::Path;
let rt = Arc::new(
tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.unwrap(),
);
let mut client: KubeMultiPodFs = KubeMultiPodFs::new(&rt);
// connect
assert!(client.connect().is_ok());
// get working directory
println!("Wrkdir: {}", client.pwd().ok().unwrap().display());
// change working directory
assert!(client.change_dir(Path::new("/my-pod/alpine/tmp")).is_ok());
// disconnect
assert!(client.disconnect().is_ok());Here is a basic usage example, with the KubeContainerFs client, which is used to connect and interact with a single container on a certain pod. This client gives the entire access to the container file system.
// import remotefs trait and client
use remotefs::RemoteFs;
use remotefs_kube::KubeContainerFs;
use std::path::Path;
let rt = Arc::new(
tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.unwrap(),
);
let mut client: KubeContainerFs = KubeContainerFs::new("my-pod", "container-name", &rt);
// connect
assert!(client.connect().is_ok());
// get working directory
println!("Wrkdir: {}", client.pwd().ok().unwrap().display());
// change working directory
assert!(client.change_dir(Path::new("/tmp")).is_ok());
// disconnect
assert!(client.disconnect().is_ok());The following table states the compatibility for the client client and the remote file system trait method.
Note: connect(), disconnect() and is_connected() MUST always be supported, and are so omitted in the table.
| Client/Method | Kube |
|---|---|
| append_file | No |
| append | No |
| change_dir | Yes |
| copy | Yes |
| create_dir | Yes |
| create_file | Yes |
| create | No |
| exec | Yes |
| exists | Yes |
| list_dir | Yes |
| mov | Yes |
| open_file | Yes |
| open | No |
| pwd | Yes |
| remove_dir_all | Yes |
| remove_dir | Yes |
| remove_file | Yes |
| setstat | Yes |
| stat | Yes |
| symlink | Yes |
View remotefs-kube's changelog HERE
remotefs-kube is licensed under the MIT license.
You can read the entire license HERE