airshipctl/cmd/config/get_context.go
Ian H. Pittwood 69b37c15b8 [#27] Move execution logic from cmd to pkg
Moves all execution logic from cmd/config to pkg/config.

Adds tests for moved execution logic.

Change-Id: I6381c9fe9eeba938e855bf7d7ea52cd22a5c08b6
2020-02-11 15:33:47 -06:00

70 lines
2.2 KiB
Go

/*
Copyright 2014 The Kubernetes 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 config
import (
"fmt"
"github.com/spf13/cobra"
"opendev.org/airship/airshipctl/pkg/config"
"opendev.org/airship/airshipctl/pkg/environment"
)
var (
getContextLong = "Display a specific context, the current-context or all defined contexts if no name is provided"
getContextExample = fmt.Sprintf(`# List all the contexts airshipctl knows about
airshipctl config get-context
# Display the current context
airshipctl config get-context --%v
# Display a specific Context
airshipctl config get-context e2e`,
config.FlagCurrentContext)
)
// A Context refers to a particular cluster, however it does not specify which of the cluster types
// it relates to. Getting explicit information about a particular context will depend
// on the ClusterType flag.
// NewCmdConfigGetContext returns a Command instance for 'config -Context' sub command
func NewCmdConfigGetContext(rootSettings *environment.AirshipCTLSettings) *cobra.Command {
theContext := &config.ContextOptions{}
getcontextcmd := &cobra.Command{
Use: "get-context NAME",
Short: getContextLong,
Example: getContextExample,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) == 1 {
theContext.Name = args[0]
}
return config.RunGetContext(theContext, cmd.OutOrStdout(), rootSettings.Config())
},
}
gctxInitFlags(theContext, getcontextcmd)
return getcontextcmd
}
func gctxInitFlags(o *config.ContextOptions, getcontextcmd *cobra.Command) {
getcontextcmd.Flags().BoolVar(&o.CurrentContext, config.FlagCurrentContext, false,
config.FlagCurrentContext+" to retrieve the current context entry in airshipctl config")
}