dc0979b65b
This also increases unit test coverage Change-Id: I324954a1216f2204ff3977c05eb9bd087cd87795
126 lines
3.5 KiB
Go
126 lines
3.5 KiB
Go
/*
|
|
Copyright 2016 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"
|
|
"opendev.org/airship/airshipctl/pkg/log"
|
|
)
|
|
|
|
var (
|
|
setClusterLong = `
|
|
Sets a cluster entry in arshipctl config.
|
|
Specifying a name that already exists will merge new fields on top of existing values for those fields.`
|
|
|
|
setClusterExample = fmt.Sprintf(`
|
|
# Set only the server field on the e2e cluster entry without touching other values.
|
|
airshipctl config set-cluster e2e --%v=ephemeral --%v=https://1.2.3.4
|
|
|
|
# Embed certificate authority data for the e2e cluster entry
|
|
airshipctl config set-cluster e2e --%v=target --%v-authority=~/.airship/e2e/kubernetes.ca.crt
|
|
|
|
# Disable cert checking for the dev cluster entry
|
|
airshipctl config set-cluster e2e --%v=target --%v=true
|
|
|
|
# Configure Client Certificate
|
|
airshipctl config set-cluster e2e --%v=target --%v=true --%v=".airship/cert_file"`,
|
|
config.FlagClusterType,
|
|
config.FlagAPIServer,
|
|
config.FlagClusterType,
|
|
config.FlagCAFile,
|
|
config.FlagClusterType,
|
|
config.FlagInsecure,
|
|
config.FlagClusterType,
|
|
config.FlagEmbedCerts,
|
|
config.FlagCertFile)
|
|
)
|
|
|
|
// NewCmdConfigSetCluster creates a command object for the "set-cluster" action, which
|
|
// defines a new cluster airshipctl config.
|
|
func NewCmdConfigSetCluster(rootSettings *environment.AirshipCTLSettings) *cobra.Command {
|
|
o := &config.ClusterOptions{}
|
|
cmd := &cobra.Command{
|
|
Use: "set-cluster NAME",
|
|
Short: "Sets a cluster entry in the airshipctl config",
|
|
Long: setClusterLong,
|
|
Example: setClusterExample,
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
o.Name = args[0]
|
|
modified, err := config.RunSetCluster(o, rootSettings.Config(), true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if modified {
|
|
fmt.Fprintf(cmd.OutOrStdout(), "Cluster %q of type %q modified.\n",
|
|
o.Name, o.ClusterType)
|
|
} else {
|
|
fmt.Fprintf(cmd.OutOrStdout(), "Cluster %q of type %q created.\n",
|
|
o.Name, o.ClusterType)
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
addSetClusterFlags(o, cmd)
|
|
return cmd
|
|
}
|
|
|
|
func addSetClusterFlags(o *config.ClusterOptions, cmd *cobra.Command) {
|
|
flags := cmd.Flags()
|
|
|
|
flags.StringVar(
|
|
&o.Server,
|
|
config.FlagAPIServer,
|
|
"",
|
|
config.FlagAPIServer+" for the cluster entry in airshipctl config")
|
|
|
|
flags.StringVar(
|
|
&o.ClusterType,
|
|
config.FlagClusterType,
|
|
"",
|
|
config.FlagClusterType+" for the cluster entry in airshipctl config")
|
|
|
|
err := cmd.MarkFlagRequired(config.FlagClusterType)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
flags.BoolVar(
|
|
&o.InsecureSkipTLSVerify,
|
|
config.FlagInsecure,
|
|
true,
|
|
config.FlagInsecure+" for the cluster entry in airshipctl config")
|
|
|
|
flags.StringVar(
|
|
&o.CertificateAuthority,
|
|
config.FlagCAFile,
|
|
"",
|
|
"Path to "+config.FlagCAFile+" file for the cluster entry in airshipctl config")
|
|
|
|
flags.BoolVar(
|
|
&o.EmbedCAData,
|
|
config.FlagEmbedCerts,
|
|
false,
|
|
config.FlagEmbedCerts+" for the cluster entry in airshipctl config")
|
|
}
|