-
Notifications
You must be signed in to change notification settings - Fork 63
/
compose.go
63 lines (53 loc) · 1.58 KB
/
compose.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
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2023, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package compose
import (
"context"
"github.com/MakeNowJust/heredoc"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"kraftkit.sh/cmdfactory"
"kraftkit.sh/internal/cli/kraft/compose/build"
"kraftkit.sh/internal/cli/kraft/compose/down"
"kraftkit.sh/internal/cli/kraft/compose/ls"
"kraftkit.sh/internal/cli/kraft/compose/ps"
"kraftkit.sh/internal/cli/kraft/compose/up"
)
type ComposeOptions struct {
Composefile string `long:"file" short:"f" usage:"Set the Compose file."`
}
func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&ComposeOptions{}, cobra.Command{
Short: "Build and run compose projects with Unikraft",
Use: "compose [FLAGS] [SUBCOMMAND|DIR]",
Aliases: []string{},
Long: heredoc.Docf(`
Build and run compose projects with Unikraft.
`),
Example: heredoc.Doc(`
# Start a compose project
$ kraft compose up
`),
Annotations: map[string]string{
cmdfactory.AnnotationHelpGroup: "compose",
cmdfactory.AnnotationHelpHidden: "true",
},
})
if err != nil {
panic(err)
}
cmd.AddCommand(build.NewCmd())
cmd.AddCommand(down.NewCmd())
cmd.AddCommand(ls.NewCmd())
cmd.AddCommand(ps.NewCmd())
cmd.AddCommand(up.NewCmd())
return cmd
}
func (opts *ComposeOptions) Pre(cmd *cobra.Command, _ []string) error {
return nil
}
func (opts *ComposeOptions) Run(_ context.Context, _ []string) error {
return pflag.ErrHelp
}