-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: kbcli support list-service-reference (#5578)
Co-authored-by: 1aal <[email protected]>
- Loading branch information
Showing
9 changed files
with
200 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
pkg/cli/cmd/clusterdefinition/list_service_reference.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/* | ||
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/kubeblocks/pkg/cli/list" | ||
"github.com/apecloud/kubeblocks/pkg/cli/printer" | ||
"github.com/apecloud/kubeblocks/pkg/cli/types" | ||
"github.com/apecloud/kubeblocks/pkg/cli/util" | ||
) | ||
|
||
var ( | ||
listServiceRefExample = templates.Examples(` | ||
# List cluster references name declared in a cluster definition. | ||
kbcli clusterdefinition list-service-reference apecloud-mysql`) | ||
) | ||
|
||
func NewListServiceReferenceCmd(f cmdutil.Factory, streams genericiooptions.IOStreams) *cobra.Command { | ||
o := list.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 *list.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 | ||
} |
91 changes: 91 additions & 0 deletions
91
pkg/cli/cmd/clusterdefinition/list_service_reference_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
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 ( | ||
"bytes" | ||
"fmt" | ||
"net/http" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
|
||
"github.com/spf13/cobra" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"k8s.io/cli-runtime/pkg/genericiooptions" | ||
"k8s.io/cli-runtime/pkg/resource" | ||
"k8s.io/client-go/kubernetes/scheme" | ||
clientfake "k8s.io/client-go/rest/fake" | ||
cmdtesting "k8s.io/kubectl/pkg/cmd/testing" | ||
|
||
appsv1alpha1 "github.com/apecloud/kubeblocks/apis/apps/v1alpha1" | ||
"github.com/apecloud/kubeblocks/pkg/cli/testing" | ||
"github.com/apecloud/kubeblocks/pkg/cli/types" | ||
) | ||
|
||
var _ = Describe("clusterdefinition list components", func() { | ||
var ( | ||
cmd *cobra.Command | ||
streams genericiooptions.IOStreams | ||
out *bytes.Buffer | ||
tf *cmdtesting.TestFactory | ||
) | ||
const ( | ||
namespace = testing.Namespace | ||
clusterdefinitionName = testing.ClusterDefName | ||
) | ||
|
||
mockClient := func(data runtime.Object) *cmdtesting.TestFactory { | ||
tf := testing.NewTestFactory(namespace) | ||
codec := scheme.Codecs.LegacyCodec(scheme.Scheme.PrioritizedVersionsAllGroups()...) | ||
tf.UnstructuredClient = &clientfake.RESTClient{ | ||
NegotiatedSerializer: resource.UnstructuredPlusDefaultContentConfig().NegotiatedSerializer, | ||
GroupVersion: schema.GroupVersion{Group: types.AppsAPIGroup, Version: types.AppsAPIVersion}, | ||
Resp: &http.Response{StatusCode: http.StatusOK, Header: cmdtesting.DefaultHeader(), Body: cmdtesting.ObjBody(codec, data)}, | ||
} | ||
tf.Client = tf.UnstructuredClient | ||
tf.FakeDynamicClient = testing.FakeDynamicClient(data) | ||
return tf | ||
} | ||
|
||
BeforeEach(func() { | ||
_ = appsv1alpha1.AddToScheme(scheme.Scheme) | ||
clusterDef := testing.FakeClusterDef() | ||
tf = mockClient(clusterDef) | ||
streams, _, out, _ = genericiooptions.NewTestIOStreams() | ||
cmd = NewListServiceReferenceCmd(tf, streams) | ||
}) | ||
|
||
It("create list-service-reference cmd", func() { | ||
cmd := NewListServiceReferenceCmd(tf, streams) | ||
Expect(cmd).ShouldNot(BeNil()) | ||
}) | ||
|
||
It("list-service", func() { | ||
cmd.Run(cmd, []string{clusterdefinitionName}) | ||
expected := `CLUSTER-DEFINITION NAME COMPONENT SERVICE-KIND SERVICE-VERSION | ||
fake-cluster-definition fake-serviceRef fake-component-type mysql 8.0.\d{1,2}$ | ||
` | ||
Expect(expected).Should(Equal(out.String())) | ||
fmt.Println(out.String()) | ||
}) | ||
|
||
}) |