Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AddFeatureGatesStringFlag (0.18 sec)

  1. cmd/kubeadm/app/cmd/options/generic.go

    	fs.StringVar(imageRepository, ImageRepository, *imageRepository, "Choose a container registry to pull control plane images from")
    }
    
    // AddFeatureGatesStringFlag adds the --feature-gates flag to the given flagset
    func AddFeatureGatesStringFlag(fs *pflag.FlagSet, featureGatesString *string) {
    	if knownFeatures := features.KnownFeatures(&features.InitFeatureGates); len(knownFeatures) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/upgrade.go

    	fs.BoolVar(&flags.printConfig, "print-config", flags.printConfig, "Specifies whether the configuration file that will be used in the upgrade should be printed or not.")
    	options.AddFeatureGatesStringFlag(fs, &flags.featureGatesString)
    	options.AddIgnorePreflightErrorsFlag(fs, &flags.ignorePreflightErrors)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:18:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/config.go

    func AddImagesCommonConfigFlags(flagSet *flag.FlagSet, cfg *kubeadmapiv1old.ClusterConfiguration, cfgPath *string, featureGatesString *string) {
    	options.AddKubernetesVersionFlag(flagSet, &cfg.KubernetesVersion)
    	options.AddFeatureGatesStringFlag(flagSet, featureGatesString)
    	options.AddImageMetaFlags(flagSet, &cfg.ImageRepository)
    	options.AddConfigFlag(flagSet, cfgPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/init.go

    		`Optional extra Subject Alternative Names (SANs) to use for the API Server serving certificate. Can be both IP addresses and DNS names.`,
    	)
    	options.AddFeatureGatesStringFlag(flagSet, featureGatesString)
    }
    
    // AddInitOtherFlags adds init flags that are not bound to a configuration file to the given flagset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top