-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
74 lines (59 loc) · 1.83 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main
import (
"os"
src "github.com/WoodProgrammer/firecracker-vmbuilder/src"
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
)
var (
configFile string
rootFsName string
rootFsSize int64
)
func newBuildClient() src.Builder {
return &src.BuildHandler{}
}
func newParserClient() src.Parser {
return &src.ParseHandler{}
}
func newRootFSClient() src.RootFS {
return &src.RootFSHandler{}
}
func HandleRootFS() {
parserClient := newParserClient()
buildCLient := newBuildClient()
rootFsClient := newRootFSClient()
result, err := parserClient.ParseYamlFile(configFile)
if err != nil {
log.Err(err).Msg("Error while running parserCli.ParseYamlFile()")
}
err = rootFsClient.CreateFileDD(rootFsSize, rootFsName)
if err != nil {
log.Err(err).Msg("Error while running rootFsClient.CreateFileDD()")
}
fsErr := rootFsClient.FormatandMountFileSystem(rootFsName, result.TargetDirectory)
if fsErr != nil {
log.Err(fsErr).Msg("Error while running rootFsClient.FormatFileSystem()")
}
err = buildCLient.BuildExportDockerImage(result.Context, result.DockerfilePath, result.TargetDirectory)
if err != nil {
log.Err(err).Msg("Error while running buildCLient.BuildExportDockerImage()")
}
}
func main() {
var rootCmd = &cobra.Command{
Use: "rootfsCreator",
Short: "CLI tool to manage RootFS for firecracker micro VMs",
Run: func(cmd *cobra.Command, args []string) {
HandleRootFS()
},
}
rootCmd.Flags().StringVarP(&configFile, "config", "C", "config.yaml", "Config file of RootFS creation")
rootCmd.Flags().StringVarP(&rootFsName, "filesystem-name", "F", "rootfs", "Name of rootfs")
rootCmd.Flags().Int64VarP(&rootFsSize, "filesystem-size", "S", 10, "Size of rootfs")
rootCmd.MarkFlagRequired("config")
if err := rootCmd.Execute(); err != nil {
log.Err(err).Msg("rootfsCreator execution failed")
os.Exit(1)
}
}