-
Notifications
You must be signed in to change notification settings - Fork 64
/
logs.go
148 lines (122 loc) · 3.79 KB
/
logs.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2024, 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 logs
import (
"context"
"fmt"
"os"
"strings"
"github.com/MakeNowJust/heredoc"
"github.com/spf13/cobra"
kraftcloud "sdk.kraft.cloud"
"kraftkit.sh/cmdfactory"
"kraftkit.sh/compose"
"kraftkit.sh/config"
"kraftkit.sh/internal/cli/kraft/cloud/instance/logs"
"kraftkit.sh/internal/cli/kraft/cloud/utils"
)
type LogsOptions struct {
Auth *config.AuthConfig `noattribute:"true"`
Client kraftcloud.KraftCloud `noattribute:"true"`
Composefile string `noattribute:"true"`
Follow bool `long:"follow" short:"f" usage:"Follow log output"`
Metro string `noattribute:"true"`
Output string `long:"output" short:"o" usage:"Set output format. Options: table,yaml,json,list" default:"table"`
Project *compose.Project `noattribute:"true"`
Tail int `long:"tail" short:"t" usage:"Number of lines to show from the end of the logs" default:"-1"`
Token string `noattribute:"true"`
}
func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&LogsOptions{}, cobra.Command{
Short: "Log the services in a KraftCloud compose project deployment",
Use: "log [FLAGS]",
Args: cobra.ArbitraryArgs,
Aliases: []string{"logs", "l"},
Long: heredoc.Doc(`
Log the services in a KraftCloud deployment.
`),
Example: heredoc.Doc(`
# Log the services in a KraftCloud deployment.
$ kraft cloud compose log
# Log a service in a KraftCloud deployment.
$ kraft cloud compose log nginx
`),
Annotations: map[string]string{
cmdfactory.AnnotationHelpGroup: "kraftcloud-compose",
},
})
if err != nil {
panic(err)
}
return cmd
}
func (opts *LogsOptions) Pre(cmd *cobra.Command, args []string) error {
err := utils.PopulateMetroToken(cmd, &opts.Metro, &opts.Token)
if err != nil {
return fmt.Errorf("could not populate metro and token: %w", err)
}
if cmd.Flag("file").Changed {
opts.Composefile = cmd.Flag("file").Value.String()
}
return nil
}
func (opts *LogsOptions) Run(ctx context.Context, args []string) error {
return Logs(ctx, opts, args...)
}
func Logs(ctx context.Context, opts *LogsOptions, args ...string) error {
var err error
if opts.Auth == nil {
opts.Auth, err = config.GetKraftCloudAuthConfig(ctx, opts.Token)
if err != nil {
return fmt.Errorf("could not retrieve credentials: %w", err)
}
}
if opts.Client == nil {
opts.Client = kraftcloud.NewClient(
kraftcloud.WithToken(config.GetKraftCloudTokenAuthConfig(*opts.Auth)),
)
}
workdir, err := os.Getwd()
if err != nil {
return err
}
if opts.Project == nil {
opts.Project, err = compose.NewProjectFromComposeFile(ctx, workdir, opts.Composefile)
if err != nil {
return err
}
}
if err := opts.Project.Validate(ctx); err != nil {
return err
}
// If no services are specified, start all services.
if len(args) == 0 {
for service := range opts.Project.Services {
args = append(args, service)
}
}
var instances []string
for _, serviceName := range args {
service, ok := opts.Project.Services[serviceName]
if !ok {
return fmt.Errorf("service '%s' not found", serviceName)
}
name := strings.ReplaceAll(fmt.Sprintf("%s-%s", opts.Project.Name, service.Name), "_", "-")
if cname := service.ContainerName; len(cname) > 0 {
name = cname
}
instances = append(instances, name)
}
if len(instances) == 0 {
return fmt.Errorf("no instances found")
}
return logs.Log(ctx, &logs.LogOptions{
Auth: opts.Auth,
Client: opts.Client,
Follow: opts.Follow,
Metro: opts.Metro,
Tail: opts.Tail,
}, instances...)
}