mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-07 22:03:22 +00:00
466 lines
20 KiB
Go
466 lines
20 KiB
Go
/*
|
|
Copyright 2018 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 cmd
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"strings"
|
|
|
|
"github.com/golang/glog"
|
|
"github.com/renstrom/dedent"
|
|
"github.com/spf13/cobra"
|
|
flag "github.com/spf13/pflag"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
|
|
kubeadmscheme "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/scheme"
|
|
kubeadmapiv1alpha2 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1alpha2"
|
|
kubeadmapiv1alpha3 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1alpha3"
|
|
cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
|
|
"k8s.io/kubernetes/cmd/kubeadm/app/constants"
|
|
"k8s.io/kubernetes/cmd/kubeadm/app/features"
|
|
"k8s.io/kubernetes/cmd/kubeadm/app/images"
|
|
"k8s.io/kubernetes/cmd/kubeadm/app/phases/uploadconfig"
|
|
kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
|
|
configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
|
|
kubeconfigutil "k8s.io/kubernetes/cmd/kubeadm/app/util/kubeconfig"
|
|
utilsexec "k8s.io/utils/exec"
|
|
)
|
|
|
|
var (
|
|
availableAPIObjects = []string{constants.MasterConfigurationKind, constants.NodeConfigurationKind}
|
|
// sillyToken is only set statically to make kubeadm not randomize the token on every run
|
|
sillyToken = kubeadmapiv1alpha3.BootstrapToken{
|
|
Token: &kubeadmapiv1alpha3.BootstrapTokenString{
|
|
ID: "abcdef",
|
|
Secret: "0123456789abcdef",
|
|
},
|
|
}
|
|
)
|
|
|
|
// NewCmdConfig returns cobra.Command for "kubeadm config" command
|
|
func NewCmdConfig(out io.Writer) *cobra.Command {
|
|
|
|
var kubeConfigFile string
|
|
cmd := &cobra.Command{
|
|
Use: "config",
|
|
Short: "Manage configuration for a kubeadm cluster persisted in a ConfigMap in the cluster.",
|
|
Long: fmt.Sprintf(dedent.Dedent(`
|
|
There is a ConfigMap in the %s namespace called %q that kubeadm uses to store internal configuration about the
|
|
cluster. kubeadm CLI v1.8.0+ automatically creates this ConfigMap with the config used with 'kubeadm init', but if you
|
|
initialized your cluster using kubeadm v1.7.x or lower, you must use the 'config upload' command to create this
|
|
ConfigMap. This is required so that 'kubeadm upgrade' can configure your upgraded cluster correctly.
|
|
`), metav1.NamespaceSystem, constants.MasterConfigurationConfigMap),
|
|
// Without this callback, if a user runs just the "upload"
|
|
// command without a subcommand, or with an invalid subcommand,
|
|
// cobra will print usage information, but still exit cleanly.
|
|
// We want to return an error code in these cases so that the
|
|
// user knows that their command was invalid.
|
|
RunE: cmdutil.SubCmdRunE("config"),
|
|
}
|
|
|
|
cmd.PersistentFlags().StringVar(&kubeConfigFile, "kubeconfig", "/etc/kubernetes/admin.conf", "The KubeConfig file to use when talking to the cluster.")
|
|
|
|
cmd.AddCommand(NewCmdConfigPrintDefault(out))
|
|
cmd.AddCommand(NewCmdConfigMigrate(out))
|
|
cmd.AddCommand(NewCmdConfigUpload(out, &kubeConfigFile))
|
|
cmd.AddCommand(NewCmdConfigView(out, &kubeConfigFile))
|
|
cmd.AddCommand(NewCmdConfigImages(out))
|
|
return cmd
|
|
}
|
|
|
|
// NewCmdConfigPrintDefault returns cobra.Command for "kubeadm config print-default" command
|
|
func NewCmdConfigPrintDefault(out io.Writer) *cobra.Command {
|
|
apiObjects := []string{}
|
|
cmd := &cobra.Command{
|
|
Use: "print-default",
|
|
Aliases: []string{"print-defaults"},
|
|
Short: "Print the default values for a kubeadm configuration object.",
|
|
Long: fmt.Sprintf(dedent.Dedent(`
|
|
This command prints the default MasterConfiguration object that is used for 'kubeadm init' and 'kubeadm upgrade',
|
|
and the default NodeConfiguration object that is used for 'kubeadm join'.
|
|
|
|
Note that sensitive values like the Bootstrap Token fields are replaced with silly values like %q in order to pass validation but
|
|
not perform the real computation for creating a token.
|
|
`), sillyToken),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if len(apiObjects) == 0 {
|
|
apiObjects = availableAPIObjects
|
|
}
|
|
allBytes := [][]byte{}
|
|
for _, apiObject := range apiObjects {
|
|
cfgBytes, err := getDefaultAPIObjectBytes(apiObject)
|
|
kubeadmutil.CheckErr(err)
|
|
allBytes = append(allBytes, cfgBytes)
|
|
}
|
|
fmt.Fprint(out, string(bytes.Join(allBytes, []byte(constants.YAMLDocumentSeparator))))
|
|
},
|
|
}
|
|
cmd.Flags().StringSliceVar(&apiObjects, "api-objects", apiObjects,
|
|
fmt.Sprintf("A comma-separated list for API objects to print the default values for. Available values: %v. This flag unset means 'print all known objects'", availableAPIObjects))
|
|
return cmd
|
|
}
|
|
|
|
func getDefaultAPIObjectBytes(apiObject string) ([]byte, error) {
|
|
var internalcfg runtime.Object
|
|
var err error
|
|
switch apiObject {
|
|
case constants.MasterConfigurationKind:
|
|
internalcfg, err = configutil.ConfigFileAndDefaultsToInternalConfig("", &kubeadmapiv1alpha3.MasterConfiguration{
|
|
API: kubeadmapiv1alpha3.API{AdvertiseAddress: "1.2.3.4"},
|
|
BootstrapTokens: []kubeadmapiv1alpha3.BootstrapToken{sillyToken},
|
|
KubernetesVersion: fmt.Sprintf("v1.%d.0", constants.MinimumControlPlaneVersion.Minor()+1),
|
|
})
|
|
case constants.NodeConfigurationKind:
|
|
internalcfg, err = configutil.NodeConfigFileAndDefaultsToInternalConfig("", &kubeadmapiv1alpha3.NodeConfiguration{
|
|
Token: sillyToken.Token.String(),
|
|
DiscoveryTokenAPIServers: []string{"kube-apiserver:6443"},
|
|
DiscoveryTokenUnsafeSkipCAVerification: true,
|
|
})
|
|
// TODO: DiscoveryTokenUnsafeSkipCAVerification: true needs to be set for validation to pass, but shouldn't be recommended as the default
|
|
default:
|
|
err = fmt.Errorf("--api-object needs to be one of %v", availableAPIObjects)
|
|
}
|
|
if err != nil {
|
|
return []byte{}, err
|
|
}
|
|
return kubeadmutil.MarshalToYamlForCodecs(internalcfg, kubeadmapiv1alpha3.SchemeGroupVersion, kubeadmscheme.Codecs)
|
|
}
|
|
|
|
// NewCmdConfigMigrate returns cobra.Command for "kubeadm config migrate" command
|
|
func NewCmdConfigMigrate(out io.Writer) *cobra.Command {
|
|
var oldCfgPath, newCfgPath string
|
|
cmd := &cobra.Command{
|
|
Use: "migrate",
|
|
Short: "Read an older version of the kubeadm configuration API types from a file, and output the similar config object for the newer version.",
|
|
Long: fmt.Sprintf(dedent.Dedent(`
|
|
This command lets you convert configuration objects of older versions to the latest supported version,
|
|
locally in the CLI tool without ever touching anything in the cluster.
|
|
In this version of kubeadm, the following API versions are supported:
|
|
- %s
|
|
- %s
|
|
|
|
Further, kubeadm can only write out config of version %q, but read both types.
|
|
So regardless of what version you pass to the --old-config parameter here, the API object will be
|
|
read, deserialized, defaulted, converted, validated, and re-serialized when written to stdout or
|
|
--new-config if specified.
|
|
|
|
In other words, the output of this command is what kubeadm actually would read internally if you
|
|
submitted this file to "kubeadm init"
|
|
`), kubeadmapiv1alpha2.SchemeGroupVersion.String(), kubeadmapiv1alpha3.SchemeGroupVersion.String(), kubeadmapiv1alpha3.SchemeGroupVersion.String()),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if len(oldCfgPath) == 0 {
|
|
kubeadmutil.CheckErr(fmt.Errorf("The --old-config flag is mandatory"))
|
|
}
|
|
|
|
internalcfg, err := configutil.AnyConfigFileAndDefaultsToInternal(oldCfgPath)
|
|
kubeadmutil.CheckErr(err)
|
|
|
|
outputBytes, err := kubeadmutil.MarshalToYamlForCodecs(internalcfg, kubeadmapiv1alpha3.SchemeGroupVersion, kubeadmscheme.Codecs)
|
|
kubeadmutil.CheckErr(err)
|
|
|
|
if newCfgPath == "" {
|
|
fmt.Fprint(out, string(outputBytes))
|
|
} else {
|
|
if err := ioutil.WriteFile(newCfgPath, outputBytes, 0644); err != nil {
|
|
kubeadmutil.CheckErr(fmt.Errorf("failed to write the new configuration to the file %q: %v", newCfgPath, err))
|
|
}
|
|
}
|
|
},
|
|
}
|
|
cmd.Flags().StringVar(&oldCfgPath, "old-config", "", "Path to the kubeadm config file that is using an old API version and should be converted. This flag is mandatory.")
|
|
cmd.Flags().StringVar(&newCfgPath, "new-config", "", "Path to the resulting equivalent kubeadm config file using the new API version. Optional, if not specified output will be sent to STDOUT.")
|
|
return cmd
|
|
}
|
|
|
|
// NewCmdConfigUpload returns cobra.Command for "kubeadm config upload" command
|
|
func NewCmdConfigUpload(out io.Writer, kubeConfigFile *string) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "upload",
|
|
Short: "Upload configuration about the current state, so that 'kubeadm upgrade' can later know how to configure the upgraded cluster.",
|
|
RunE: cmdutil.SubCmdRunE("upload"),
|
|
}
|
|
|
|
cmd.AddCommand(NewCmdConfigUploadFromFile(out, kubeConfigFile))
|
|
cmd.AddCommand(NewCmdConfigUploadFromFlags(out, kubeConfigFile))
|
|
return cmd
|
|
}
|
|
|
|
// NewCmdConfigView returns cobra.Command for "kubeadm config view" command
|
|
func NewCmdConfigView(out io.Writer, kubeConfigFile *string) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "view",
|
|
Short: "View the kubeadm configuration stored inside the cluster.",
|
|
Long: fmt.Sprintf(dedent.Dedent(`
|
|
Using this command, you can view the ConfigMap in the cluster where the configuration for kubeadm is located.
|
|
|
|
The configuration is located in the %q namespace in the %q ConfigMap.
|
|
`), metav1.NamespaceSystem, constants.MasterConfigurationConfigMap),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
glog.V(1).Infoln("[config] retrieving ClientSet from file")
|
|
client, err := kubeconfigutil.ClientSetFromFile(*kubeConfigFile)
|
|
kubeadmutil.CheckErr(err)
|
|
|
|
err = RunConfigView(out, client)
|
|
kubeadmutil.CheckErr(err)
|
|
},
|
|
}
|
|
}
|
|
|
|
// NewCmdConfigUploadFromFile verifies given kubernetes config file and returns cobra.Command for
|
|
// "kubeadm config upload from-file" command
|
|
func NewCmdConfigUploadFromFile(out io.Writer, kubeConfigFile *string) *cobra.Command {
|
|
var cfgPath string
|
|
cmd := &cobra.Command{
|
|
Use: "from-file",
|
|
Short: "Upload a configuration file to the in-cluster ConfigMap for kubeadm configuration.",
|
|
Long: fmt.Sprintf(dedent.Dedent(`
|
|
Using this command, you can upload configuration to the ConfigMap in the cluster using the same config file you gave to 'kubeadm init'.
|
|
If you initialized your cluster using a v1.7.x or lower kubeadm client and used the --config option, you need to run this command with the
|
|
same config file before upgrading to v1.8 using 'kubeadm upgrade'.
|
|
|
|
The configuration is located in the %q namespace in the %q ConfigMap.
|
|
`), metav1.NamespaceSystem, constants.MasterConfigurationConfigMap),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if len(cfgPath) == 0 {
|
|
kubeadmutil.CheckErr(fmt.Errorf("The --config flag is mandatory"))
|
|
}
|
|
|
|
glog.V(1).Infoln("[config] retrieving ClientSet from file")
|
|
client, err := kubeconfigutil.ClientSetFromFile(*kubeConfigFile)
|
|
kubeadmutil.CheckErr(err)
|
|
|
|
// The default configuration is empty; everything should come from the file on disk
|
|
glog.V(1).Infoln("[config] creating empty default configuration")
|
|
defaultcfg := &kubeadmapiv1alpha3.MasterConfiguration{}
|
|
// Upload the configuration using the file; don't care about the defaultcfg really
|
|
glog.V(1).Infof("[config] uploading configuration")
|
|
err = uploadConfiguration(client, cfgPath, defaultcfg)
|
|
kubeadmutil.CheckErr(err)
|
|
},
|
|
}
|
|
cmd.Flags().StringVar(&cfgPath, "config", "", "Path to a kubeadm config file. WARNING: Usage of a configuration file is experimental.")
|
|
return cmd
|
|
}
|
|
|
|
// NewCmdConfigUploadFromFlags returns cobra.Command for "kubeadm config upload from-flags" command
|
|
func NewCmdConfigUploadFromFlags(out io.Writer, kubeConfigFile *string) *cobra.Command {
|
|
cfg := &kubeadmapiv1alpha3.MasterConfiguration{}
|
|
kubeadmscheme.Scheme.Default(cfg)
|
|
|
|
var featureGatesString string
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "from-flags",
|
|
Short: "Create the in-cluster configuration file for the first time from using flags.",
|
|
Long: fmt.Sprintf(dedent.Dedent(`
|
|
Using this command, you can upload configuration to the ConfigMap in the cluster using the same flags you gave to 'kubeadm init'.
|
|
If you initialized your cluster using a v1.7.x or lower kubeadm client and set certain flags, you need to run this command with the
|
|
same flags before upgrading to v1.8 using 'kubeadm upgrade'.
|
|
|
|
The configuration is located in the %q namespace in the %q ConfigMap.
|
|
`), metav1.NamespaceSystem, constants.MasterConfigurationConfigMap),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
var err error
|
|
glog.V(1).Infoln("[config] creating new FeatureGates")
|
|
if cfg.FeatureGates, err = features.NewFeatureGate(&features.InitFeatureGates, featureGatesString); err != nil {
|
|
kubeadmutil.CheckErr(err)
|
|
}
|
|
glog.V(1).Infoln("[config] retrieving ClientSet from file")
|
|
client, err := kubeconfigutil.ClientSetFromFile(*kubeConfigFile)
|
|
kubeadmutil.CheckErr(err)
|
|
|
|
// Default both statically and dynamically, convert to internal API type, and validate everything
|
|
// The cfgPath argument is unset here as we shouldn't load a config file from disk, just go with cfg
|
|
glog.V(1).Infof("[config] uploading configuration")
|
|
err = uploadConfiguration(client, "", cfg)
|
|
kubeadmutil.CheckErr(err)
|
|
},
|
|
}
|
|
AddInitConfigFlags(cmd.PersistentFlags(), cfg, &featureGatesString)
|
|
return cmd
|
|
}
|
|
|
|
// RunConfigView gets the configuration persisted in the cluster
|
|
func RunConfigView(out io.Writer, client clientset.Interface) error {
|
|
|
|
glog.V(1).Infoln("[config] getting the cluster configuration")
|
|
cfgConfigMap, err := client.CoreV1().ConfigMaps(metav1.NamespaceSystem).Get(constants.MasterConfigurationConfigMap, metav1.GetOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// No need to append \n as that already exists in the ConfigMap
|
|
fmt.Fprintf(out, "%s", cfgConfigMap.Data[constants.MasterConfigurationConfigMapKey])
|
|
return nil
|
|
}
|
|
|
|
// uploadConfiguration handles the uploading of the configuration internally
|
|
func uploadConfiguration(client clientset.Interface, cfgPath string, defaultcfg *kubeadmapiv1alpha3.MasterConfiguration) error {
|
|
|
|
// Default both statically and dynamically, convert to internal API type, and validate everything
|
|
// First argument is unset here as we shouldn't load a config file from disk
|
|
glog.V(1).Infoln("[config] converting to internal API type")
|
|
internalcfg, err := configutil.ConfigFileAndDefaultsToInternalConfig(cfgPath, defaultcfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Then just call the uploadconfig phase to do the rest of the work
|
|
return uploadconfig.UploadConfiguration(internalcfg, client)
|
|
}
|
|
|
|
// NewCmdConfigImages returns the "kubeadm config images" command
|
|
func NewCmdConfigImages(out io.Writer) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "images",
|
|
Short: "Interact with container images used by kubeadm.",
|
|
RunE: cmdutil.SubCmdRunE("images"),
|
|
}
|
|
cmd.AddCommand(NewCmdConfigImagesList(out, nil))
|
|
cmd.AddCommand(NewCmdConfigImagesPull())
|
|
return cmd
|
|
}
|
|
|
|
// NewCmdConfigImagesPull returns the `kubeadm config images pull` command
|
|
func NewCmdConfigImagesPull() *cobra.Command {
|
|
cfg := &kubeadmapiv1alpha3.MasterConfiguration{}
|
|
kubeadmscheme.Scheme.Default(cfg)
|
|
var cfgPath, featureGatesString string
|
|
var err error
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "pull",
|
|
Short: "Pull images used by kubeadm.",
|
|
Run: func(_ *cobra.Command, _ []string) {
|
|
cfg.FeatureGates, err = features.NewFeatureGate(&features.InitFeatureGates, featureGatesString)
|
|
kubeadmutil.CheckErr(err)
|
|
internalcfg, err := configutil.ConfigFileAndDefaultsToInternalConfig(cfgPath, cfg)
|
|
kubeadmutil.CheckErr(err)
|
|
puller, err := images.NewCRInterfacer(utilsexec.New(), internalcfg.GetCRISocket())
|
|
kubeadmutil.CheckErr(err)
|
|
imagesPull := NewImagesPull(puller, images.GetAllImages(internalcfg))
|
|
kubeadmutil.CheckErr(imagesPull.PullAll())
|
|
},
|
|
}
|
|
AddImagesCommonConfigFlags(cmd.PersistentFlags(), cfg, &cfgPath, &featureGatesString)
|
|
AddImagesPullFlags(cmd.PersistentFlags(), cfg)
|
|
|
|
return cmd
|
|
}
|
|
|
|
// ImagesPull is the struct used to hold information relating to image pulling
|
|
type ImagesPull struct {
|
|
puller images.Puller
|
|
images []string
|
|
}
|
|
|
|
// NewImagesPull initializes and returns the `kubeadm config images pull` command
|
|
func NewImagesPull(puller images.Puller, images []string) *ImagesPull {
|
|
return &ImagesPull{
|
|
puller: puller,
|
|
images: images,
|
|
}
|
|
}
|
|
|
|
// PullAll pulls all images that the ImagesPull knows about
|
|
func (ip *ImagesPull) PullAll() error {
|
|
for _, image := range ip.images {
|
|
if err := ip.puller.Pull(image); err != nil {
|
|
return fmt.Errorf("failed to pull image %q: %v", image, err)
|
|
}
|
|
fmt.Printf("[config/images] Pulled %s\n", image)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// NewCmdConfigImagesList returns the "kubeadm config images list" command
|
|
func NewCmdConfigImagesList(out io.Writer, mockK8sVersion *string) *cobra.Command {
|
|
cfg := &kubeadmapiv1alpha3.MasterConfiguration{}
|
|
kubeadmscheme.Scheme.Default(cfg)
|
|
var cfgPath, featureGatesString string
|
|
var err error
|
|
|
|
// This just sets the kubernetes version for unit testing so kubeadm won't try to
|
|
// lookup the latest release from the internet.
|
|
if mockK8sVersion != nil {
|
|
cfg.KubernetesVersion = *mockK8sVersion
|
|
}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "list",
|
|
Short: "Print a list of images kubeadm will use. The configuration file is used in case any images or image repositories are customized.",
|
|
Run: func(_ *cobra.Command, _ []string) {
|
|
cfg.FeatureGates, err = features.NewFeatureGate(&features.InitFeatureGates, featureGatesString)
|
|
kubeadmutil.CheckErr(err)
|
|
imagesList, err := NewImagesList(cfgPath, cfg)
|
|
kubeadmutil.CheckErr(err)
|
|
kubeadmutil.CheckErr(imagesList.Run(out))
|
|
},
|
|
}
|
|
AddImagesCommonConfigFlags(cmd.PersistentFlags(), cfg, &cfgPath, &featureGatesString)
|
|
|
|
return cmd
|
|
}
|
|
|
|
// NewImagesList returns the underlying struct for the "kubeadm config images list" command
|
|
func NewImagesList(cfgPath string, cfg *kubeadmapiv1alpha3.MasterConfiguration) (*ImagesList, error) {
|
|
internalcfg, err := configutil.ConfigFileAndDefaultsToInternalConfig(cfgPath, cfg)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not convert cfg to an internal cfg: %v", err)
|
|
}
|
|
|
|
return &ImagesList{
|
|
cfg: internalcfg,
|
|
}, nil
|
|
}
|
|
|
|
// ImagesList defines the struct used for "kubeadm config images list"
|
|
type ImagesList struct {
|
|
cfg *kubeadmapi.MasterConfiguration
|
|
}
|
|
|
|
// Run runs the images command and writes the result to the io.Writer passed in
|
|
func (i *ImagesList) Run(out io.Writer) error {
|
|
imgs := images.GetAllImages(i.cfg)
|
|
for _, img := range imgs {
|
|
fmt.Fprintln(out, img)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// AddImagesCommonConfigFlags adds the flags that configure kubeadm (and affect the images kubeadm will use)
|
|
func AddImagesCommonConfigFlags(flagSet *flag.FlagSet, cfg *kubeadmapiv1alpha3.MasterConfiguration, cfgPath *string, featureGatesString *string) {
|
|
flagSet.StringVar(
|
|
&cfg.KubernetesVersion, "kubernetes-version", cfg.KubernetesVersion,
|
|
`Choose a specific Kubernetes version for the control plane.`,
|
|
)
|
|
flagSet.StringVar(featureGatesString, "feature-gates", *featureGatesString, "A set of key=value pairs that describe feature gates for various features. "+
|
|
"Options are:\n"+strings.Join(features.KnownFeatures(&features.InitFeatureGates), "\n"))
|
|
flagSet.StringVar(cfgPath, "config", *cfgPath, "Path to kubeadm config file.")
|
|
}
|
|
|
|
// AddImagesPullFlags adds flags related to the `kubeadm config images pull` command
|
|
func AddImagesPullFlags(flagSet *flag.FlagSet, cfg *kubeadmapiv1alpha3.MasterConfiguration) {
|
|
flagSet.StringVar(&cfg.NodeRegistration.CRISocket, "cri-socket-path", cfg.NodeRegistration.CRISocket, "Path to the CRI socket.")
|
|
}
|