Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 229 for Cfg (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/security/authn/policy_applier.go

    					meshCfg = cfg
    				}
    			} else {
    				if namespaceCfg == nil || cfg.CreationTimestamp.Before(namespaceCfg.CreationTimestamp) {
    					authnLog.Debugf("Switch selected namespace policy to %s.%s (%v)", cfg.Name, cfg.Namespace, cfg.CreationTimestamp)
    					namespaceCfg = cfg
    				}
    			}
    		} else if cfg.Namespace != rootNamespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    			defer os.RemoveAll(tmpdir)
    			test.cfg.CertificatesDir = tmpdir
    
    			if err := certs.CreatePKIAssets(test.cfg); err != nil {
    				t.Errorf("failed creating pki assets: %v", err)
    			}
    
    			// delete ca.key and front-proxy-ca.key if test.caKeyPresent is false
    			if !test.caKeyPresent {
    				if err := os.Remove(filepath.Join(test.cfg.CertificatesDir, kubeadmconstants.CAKeyName)); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/extensions.go

    			case extensions.EnvValueSource_INLINE:
    				cfg.VmConfig.EnvironmentVariables.KeyValues[e.Name] = e.Value
    			case extensions.EnvValueSource_HOST:
    				hostEnvKeys = append(hostEnvKeys, e.Name)
    			}
    		}
    		cfg.VmConfig.EnvironmentVariables.HostEnvKeys = hostEnvKeys
    	}
    
    	return cfg
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent.go

    			return
    		}
    	}
    }
    
    func (a *Agent) initLocalDNSServer() (err error) {
    	// we don't need dns server on gateways
    	if a.cfg.DNSCapture && a.cfg.ProxyType == model.SidecarProxy {
    		if a.localDNSServer, err = dnsClient.NewLocalDNSServer(a.cfg.ProxyNamespace, a.cfg.ProxyDomain, a.cfg.DNSAddr,
    			a.cfg.DNSForwardParallel); err != nil {
    			return err
    		}
    		a.localDNSServer.StartDNS()
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    					base.Error(err)
    				}
    			}
    		}
    	}
    
    	if cleanModcache {
    		if cfg.GOMODCACHE == "" {
    			base.Fatalf("go: cannot clean -modcache without a module cache")
    		}
    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "rm -rf %s", cfg.GOMODCACHE)
    		}
    		if !cfg.BuildN {
    			if err := modfetch.RemoveAll(cfg.GOMODCACHE); err != nil {
    				base.Error(err)
    			}
    		}
    	}
    
    	if cleanFuzzcache {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	// in SE. Used for multi-network support.
    	return cfg
    }
    
    // convertServices transforms a ServiceEntry config to a list of internal Service objects.
    func convertServices(cfg config.Config) []*model.Service {
    	serviceEntry := cfg.Spec.(*networking.ServiceEntry)
    	creationTime := cfg.CreationTimestamp
    
    	var resolution model.Resolution
    	switch serviceEntry.Resolution {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top