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
Firecracker RootFS handler is a simple project to create root-file-system with Docker images in ext4 format and allows you to run them in micro-vms by Firecracker.
4
+
5
+
## Features
6
+
- Convert Docker images to rootFS
7
+
- Store them locally (Registry soon ...)
8
+
9
+
## Installation
10
+
11
+
To install OpenMetricMigrator, clone the repository and build the project:
Config file contains docker image spec and rootfs details.Apart from these details you can basically pass the rootFS size and name as well. (Needs to improve)
43
+
44
+
### Available Flags
45
+
46
+
47
+
```sh
48
+
49
+
CLI tool to manage RootFS for firecracker micro VMs
50
+
51
+
Usage:
52
+
rootfsCreator [flags]
53
+
54
+
Flags:
55
+
-C, --config string Config file of RootFS creation (default "config.yaml")
56
+
-F, --filesystem-name string Name of rootfs (default "rootfs")
57
+
-S, --filesystem-size int Size of rootfs (default 10)
58
+
-h, --help help for rootfsCreator
59
+
60
+
```
61
+
62
+
## Example
63
+
64
+
Convert an OpenMetrics file to a Prometheus-compatible format:
65
+
66
+
```sh
67
+
fco -C config.yaml
68
+
```
69
+
70
+
## Contributing
71
+
72
+
Contributions are welcome! Feel free to submit issues or pull requests to improve the tool.
73
+
74
+
## Contact
75
+
76
+
For any questions or feedback, feel free to open an issue on GitHub.
0 commit comments