52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
/*
|
|
Copyright 2021 The Karmada Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package sharedcommand
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
"k8s.io/kubectl/pkg/util/templates"
|
|
|
|
"github.com/karmada-io/karmada/pkg/version"
|
|
)
|
|
|
|
var (
|
|
versionShort = `Print the version information`
|
|
versionLong = `Print the version information.`
|
|
versionExample = templates.Examples(`
|
|
# Print %[1]s command version
|
|
%[1]s version`)
|
|
)
|
|
|
|
// NewCmdVersion prints out the release version info for this command binary.
|
|
// It is used as a subcommand of a parent command.
|
|
func NewCmdVersion(parentCommand string) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "version",
|
|
Short: versionShort,
|
|
Long: versionLong,
|
|
Example: fmt.Sprintf(versionExample, parentCommand),
|
|
Run: func(_ *cobra.Command, _ []string) {
|
|
fmt.Fprintf(os.Stdout, "%s version: %s\n", parentCommand, version.Get())
|
|
},
|
|
}
|
|
|
|
return cmd
|
|
}
|