-
Notifications
You must be signed in to change notification settings - Fork 14
/
list_service_reference.go
102 lines (87 loc) · 3.01 KB
/
list_service_reference.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
/*
Copyright (C) 2022-2023 ApeCloud Co., Ltd
This file is part of KubeBlocks project
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package clusterdefinition
import (
"fmt"
"github.com/spf13/cobra"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/cli-runtime/pkg/genericiooptions"
cmdutil "k8s.io/kubectl/pkg/cmd/util"
"k8s.io/kubectl/pkg/util/templates"
"github.com/apecloud/kubeblocks/apis/apps/v1alpha1"
"github.com/apecloud/kbcli/pkg/action"
"github.com/apecloud/kbcli/pkg/printer"
"github.com/apecloud/kbcli/pkg/types"
"github.com/apecloud/kbcli/pkg/util"
)
var (
listServiceRefExample = templates.Examples(`
# List cluster references name declared in a cluster definition.
kbcli clusterdefinition list-service-reference orioledb`)
)
func NewListServiceReferenceCmd(f cmdutil.Factory, streams genericiooptions.IOStreams) *cobra.Command {
o := action.NewListOptions(f, streams, types.ClusterDefGVR())
o.AllNamespaces = true
cmd := &cobra.Command{
Use: "list-service-reference",
Short: "List cluster references declared in a cluster definition.",
Example: listServiceRefExample,
Aliases: []string{"ls-sr"},
ValidArgsFunction: util.ResourceNameCompletionFunc(f, o.GVR),
Run: func(cmd *cobra.Command, args []string) {
util.CheckErr(validate(args))
o.Names = args
util.CheckErr(listServiceRef(o))
},
}
return cmd
}
func listServiceRef(o *action.ListOptions) error {
o.Print = false
r, err := o.Run()
if err != nil {
return err
}
infos, err := r.Infos()
if err != nil {
return err
}
p := printer.NewTablePrinter(o.Out)
p.SetHeader("CLUSTER-DEFINITION", "NAME", "COMPONENT", "SERVICE-KIND", "SERVICE-VERSION")
p.SortBy(1, 2)
for _, info := range infos {
var cd v1alpha1.ClusterDefinition
if err = runtime.DefaultUnstructuredConverter.FromUnstructured(info.Object.(*unstructured.Unstructured).Object, &cd); err != nil {
return err
}
for _, comp := range cd.Spec.ComponentDefs {
if comp.ServiceRefDeclarations == nil {
continue
}
for _, serviceDec := range comp.ServiceRefDeclarations {
for _, ref := range serviceDec.ServiceRefDeclarationSpecs {
p.AddRow(cd.Name, serviceDec.Name, comp.Name, ref.ServiceKind, ref.ServiceVersion)
}
}
}
}
if p.Tbl.Length() == 0 {
fmt.Printf("No service references are declared in cluster definition %s", o.Names)
} else {
p.Print()
}
return nil
}