github.skymusic.top/operator-framework/operator-sdk@v0.8.2/cmd/operator-sdk/version/cmd.go (about)

     1  // Copyright 2019 The Operator-SDK Authors
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package version
    16  
    17  import (
    18  	"fmt"
    19  
    20  	ver "github.com/operator-framework/operator-sdk/version"
    21  
    22  	"github.com/spf13/cobra"
    23  )
    24  
    25  func NewCmd() *cobra.Command {
    26  	versionCmd := &cobra.Command{
    27  		Use:   "version",
    28  		Short: "Prints the version of operator-sdk",
    29  		Run: func(cmd *cobra.Command, args []string) {
    30  			version := ver.GitVersion
    31  			if version == "unknown" {
    32  				version = ver.Version
    33  			}
    34  			fmt.Printf("operator-sdk version: %s, commit: %s\n", version, ver.GitCommit)
    35  		},
    36  	}
    37  	return versionCmd
    38  }