Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for cfgData (0.32 sec)

  1. pilot/pkg/config/kube/crdclient/client_test.go

    		name := "name1"
    		namespace := "bar"
    		cfgMeta := config.Meta{
    			GroupVersionKind: r.GroupVersionKind(),
    			Name:             name,
    		}
    		if !r.IsClusterScoped() {
    			cfgMeta.Namespace = namespace
    		}
    		pb := &v1alpha3.WorkloadGroup{Probe: &v1alpha3.ReadinessProbe{PeriodSeconds: 6}}
    		if _, err := store.Create(config.Config{
    			Meta: cfgMeta,
    			Spec: config.Spec(pb),
    		}); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    				InheritFlags:   []string{options.CfgPath, options.CertificatesDir, options.DryRun},
    				Example:        kubeletFinalizePhaseExample,
    				RunAllSiblings: true,
    			},
    			{
    				Name:         "enable-client-cert-rotation",
    				Short:        "Enable kubelet client certificate rotation",
    				InheritFlags: []string{options.CfgPath, options.CertificatesDir, options.DryRun},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. cmd/admin-bucket-handlers.go

    		bucketQuotaConfigFile,
    		objectLockConfig,
    		bucketVersioningConfig,
    		bucketReplicationConfig,
    		bucketTargetsFile,
    	}
    	for _, bi := range buckets {
    		for _, cfgFile := range cfgFiles {
    			cfgPath := pathJoin(bi.Name, cfgFile)
    			bucket := bi.Name
    			switch cfgFile {
    			case bucketNotificationConfig:
    				config, err := globalBucketMetadataSys.GetNotificationConfig(bucket)
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/token.go

    			client, err := cmdutil.GetClientSet(kubeConfigFile, dryRun)
    			if err != nil {
    				return err
    			}
    
    			return RunCreateToken(out, client, cfgPath, cfg, printJoinCommand, certificateKey, kubeConfigFile)
    		},
    	}
    
    	options.AddConfigFlag(createCmd.Flags(), &cfgPath)
    	createCmd.Flags().BoolVar(&printJoinCommand,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/node.go

    // Please note that this structure includes the public kubeadm config API, but only a subset of the options
    // supported by this api will be exposed as a flag.
    type nodeOptions struct {
    	cfgPath               string
    	kubeConfigPath        string
    	etcdUpgrade           bool
    	renewCerts            bool
    	dryRun                bool
    	patchesDir            string
    	ignorePreflightErrors []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		Name:    "preflight",
    		Short:   "Run pre-flight checks",
    		Long:    "Run pre-flight checks for kubeadm init.",
    		Example: preflightExample,
    		Run:     runPreflight,
    		InheritFlags: []string{
    			options.CfgPath,
    			options.ImageRepository,
    			options.NodeCRISocket,
    			options.IgnorePreflightErrors,
    			options.DryRun,
    		},
    	}
    }
    
    // runPreflight executes preflight checks logic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/addons.go

    		return err
    	}
    	return proxyaddon.EnsureProxyAddon(&cfg.ClusterConfiguration, &cfg.LocalAPIEndpoint, client, out, printManifest)
    }
    
    func getAddonPhaseFlags(name string) []string {
    	flags := []string{
    		options.CfgPath,
    		options.KubeconfigPath,
    		options.KubernetesVersion,
    		options.ImageRepository,
    		options.DryRun,
    	}
    	if name == "all" || name == "kube-proxy" {
    		flags = append(flags,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. cni/pkg/install/install.go

    		cfgPath, err := createCNIConfigFile(ctx, in.cfg)
    		if err != nil {
    			cniInstalls.With(resultLabel.Value(resultCreateCNIConfigFailure)).Increment()
    			return copiedFiles, fmt.Errorf("create CNI config file: %v", err)
    		}
    		in.cniConfigFilepath = cfgPath
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/preflight.go

    		Short:   "Run join pre-flight checks",
    		Long:    "Run pre-flight checks for kubeadm join.",
    		Example: preflightExample,
    		Run:     runPreflight,
    		InheritFlags: []string{
    			options.CfgPath,
    			options.IgnorePreflightErrors,
    			options.TLSBootstrapToken,
    			options.TokenStr,
    			options.ControlPlane,
    			options.APIServerAdvertiseAddress,
    			options.APIServerBindPort,
    			options.NodeCRISocket,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	# Joins a machine as a control plane instance
    	kubeadm join phase control-plane-join all
    `)
    
    func getControlPlaneJoinPhaseFlags(name string) []string {
    	flags := []string{
    		options.CfgPath,
    		options.ControlPlane,
    		options.NodeName,
    	}
    	if name == "etcd" || name == "all" {
    		flags = append(flags, options.Patches)
    	}
    	if name != "mark-control-plane" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top