Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 421 for Cfg (0.05 sec)

  1. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    		}
    
    		waiter := apiclient.NewKubeWaiter(data.Client(), data.Cfg().Timeouts.UpgradeManifests.Duration, os.Stdout)
    
    		if err := upgrade.PerformStaticPodUpgrade(client, waiter, cfg, etcdUpgrade, renewCerts, patchesDir); err != nil {
    			return errors.Wrap(err, "couldn't complete the static pod upgrade")
    		}
    
    		if err := upgrade.PerformAddonsUpgrade(client, cfg, data.PatchesDir(), data.OutputWriter()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/registryredirector/kube.go

    		return nil, fmt.Errorf("could not create %q namespace for registry redirector server install; err: %v", ns, err)
    	}
    
    	args := map[string]any{}
    
    	if len(cfg.TargetRegistry) != 0 {
    		args["TargetRegistry"] = cfg.TargetRegistry
    	}
    
    	if len(cfg.Image) != 0 {
    		args["Image"] = cfg.Image
    	}
    
    	// apply YAML
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks.go

    	}
    	checks = addCommonChecks(execer, "", &cfg.NodeRegistration, checks)
    	if cfg.ControlPlane == nil {
    		checks = append(checks, FileAvailableCheck{Path: cfg.CACertPath})
    	}
    
    	if cfg.Discovery.BootstrapToken != nil {
    		ipstr, _, err := net.SplitHostPort(cfg.Discovery.BootstrapToken.APIServerEndpoint)
    		if err == nil {
    			checks = append(checks,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. pilot/pkg/autoregistration/controller_test.go

    	}
    
    	cfg := store.Get(gvk.WorkloadEntry, name, wg.Namespace)
    	if cfg != nil {
    		t.Fatalf("workload entry found when it was not expected")
    	}
    }
    
    func checkNoEntryHealth(store model.ConfigStoreController, proxy *model.Proxy) error {
    	name, _ := proxy.WorkloadEntry()
    	cfg := store.Get(gvk.WorkloadEntry, name, proxy.Metadata.Namespace)
    	if cfg == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/environment/kube/settings.go

    	out := []cluster.Config{}
    	for _, cfg := range configs {
    		if kube >= len(kubeconfigs) {
    			// not enough to cover all clusters in file
    			return nil, fmt.Errorf("istio.test.kube.cfg should have a kubeconfig for each kube cluster")
    		}
    		if cfg.Meta == nil {
    			cfg.Meta = config.Map{}
    		}
    		cfg.Meta["kubeconfig"] = kubeconfigs[kube]
    
    		kube++
    		out = append(out, cfg)
    	}
    	if kube < len(kubeconfigs) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/join.go

    func addJoinConfigFlags(flagSet *flag.FlagSet, cfg *kubeadmapiv1.JoinConfiguration) {
    	flagSet.StringVar(
    		&cfg.NodeRegistration.Name, options.NodeName, cfg.NodeRegistration.Name,
    		`Specify the node name.`,
    	)
    	flagSet.StringVar(
    		&cfg.ControlPlane.CertificateKey, options.CertificateKey, cfg.ControlPlane.CertificateKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/coverage/cover.go

    // properly downstream).
    func Fixup() {
    	if base.Flag.Cfg.CoverageInfo == nil {
    		return // not using coverage
    	}
    
    	metaVarName := base.Flag.Cfg.CoverageInfo.MetaVar
    	pkgIdVarName := base.Flag.Cfg.CoverageInfo.PkgIdVar
    	counterMode := base.Flag.Cfg.CoverageInfo.CounterMode
    	counterGran := base.Flag.Cfg.CoverageInfo.CounterGranularity
    	counterPrefix := base.Flag.Cfg.CoverageInfo.CounterPrefix
    	var metavar *ir.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    func (b *Builder) ccExe() []string {
    	return envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    }
    
    // cxxExe returns the CXX compiler setting without all the extra flags we add implicitly.
    func (b *Builder) cxxExe() []string {
    	return envList("CXX", cfg.DefaultCXX(cfg.Goos, cfg.Goarch))
    }
    
    // fcExe returns the FC compiler setting without all the extra flags we add implicitly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/controlplane/volumes.go

    	// If external etcd is specified, mount the directories needed for accessing the CA/serving certs and the private key
    	if cfg.Etcd.External != nil {
    		etcdVols, etcdVolMounts := getEtcdCertVolumes(cfg.Etcd.External, cfg.CertificatesDir)
    		mounts.AddHostPathMounts(kubeadmconstants.KubeAPIServer, etcdVols, etcdVolMounts)
    	}
    
    	// HostPath volumes for the controller manager
    	// Read-only mount for the certificates directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. pkg/config/schema/kubetypes/common.go

    }
    
    func MustGVKFromType[T runtime.Object]() (cfg config.GroupVersionKind) {
    	if gvk, ok := getGvk(ptr.Empty[T]()); ok {
    		return gvk
    	}
    	if rp := typemap.Get[RegisterType[T]](registeredTypes); rp != nil {
    		return (*rp).GetGVK()
    	}
    	panic("unknown kind: " + cfg.String())
    }
    
    func MustToGVR[T runtime.Object](cfg config.GroupVersionKind) schema.GroupVersionResource {
    	if r, ok := gvk.ToGVR(cfg); ok {
    		return r
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top