Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 526 for kubecfg (0.19 sec)

  1. pkg/kubelet/kubelet.go

    	// define file config source
    	if kubeCfg.StaticPodPath != "" {
    		klog.InfoS("Adding static pod path", "path", kubeCfg.StaticPodPath)
    		config.NewSourceFile(kubeCfg.StaticPodPath, nodeName, kubeCfg.FileCheckFrequency.Duration, cfg.Channel(ctx, kubetypes.FileSource))
    	}
    
    	// define url config source
    	if kubeCfg.StaticPodURL != "" {
    		klog.InfoS("Adding pod URL with HTTP header", "URL", kubeCfg.StaticPodURL, "header", manifestURLHeader)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. cluster/gce/manifests/abac-authz-policy.jsonl

    {"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user":"kubecfg", "namespace": "*", "resource": "*", "apiGroup": "*", "nonResourcePath": "*"}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 01 16:39:56 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    	resourceAnalyzer stats.ResourceAnalyzer,
    	kubeCfg *kubeletconfiginternal.KubeletConfiguration,
    	tlsOptions *TLSOptions,
    	auth AuthInterface,
    	tp oteltrace.TracerProvider) {
    
    	address := netutils.ParseIPSloppy(kubeCfg.Address)
    	port := uint(kubeCfg.Port)
    	klog.InfoS("Starting to listen", "address", address, "port", port)
    	handler := NewServer(host, resourceAnalyzer, auth, kubeCfg)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/kubelet.go

    			return kubeClient, nil
    		}
    	}
    	certificateStore, err := certificate.NewFileStore(
    		"kubelet-server",
    		certDirectory,
    		certDirectory,
    		kubeCfg.TLSCertFile,
    		kubeCfg.TLSPrivateKeyFile)
    	if err != nil {
    		return nil, fmt.Errorf("failed to initialize server certificate store: %v", err)
    	}
    	var certificateRenewFailure = compbasemetrics.NewCounter(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. cni/pkg/constants/constants.go

    	ChainedCNIPlugin     = "chained-cni-plugin"
    	CNINetworkConfigFile = "cni-network-config-file"
    	CNINetworkConfig     = "cni-network-config"
    	LogLevel             = "log-level"
    	KubeconfigFilename   = "kubecfg-file-name"
    	KubeconfigMode       = "kubeconfig-mode"
    	KubeCAFile           = "kube-ca-file"
    	SkipTLSVerify        = "skip-tls-verify"
    	MonitoringPort       = "monitoring-port"
    	LogUDSAddress        = "log-uds-address"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    	kubeCfg := &kubeletconfiginternal.KubeletConfiguration{
    		EnableDebuggingHandlers: enableDebugging,
    		EnableSystemLogHandler:  enableDebugging,
    		EnableProfilingHandler:  enableDebugging,
    		EnableDebugFlagsHandler: enableDebugging,
    	}
    	return newServerTestWithDebuggingHandlers(kubeCfg, streamingServer)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    		kubelet.machineInfo,
    		kubelet.podWorkers,
    		kubelet.os,
    		kubelet,
    		nil,
    		kubelet.backOff,
    		kubeCfg.SerializeImagePulls,
    		kubeCfg.MaxParallelImagePulls,
    		float32(kubeCfg.RegistryPullQPS),
    		int(kubeCfg.RegistryBurst),
    		"",
    		"",
    		kubeCfg.CPUCFSQuota,
    		kubeCfg.CPUCFSQuotaPeriod,
    		runtimeSvc,
    		imageSvc,
    		kubelet.containerManager,
    		kubelet.containerLogManager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    func startKubelet(k kubelet.Bootstrap, podCfg *config.PodConfig, kubeCfg *kubeletconfiginternal.KubeletConfiguration, kubeDeps *kubelet.Dependencies, enableServer bool) {
    	// start the kubelet
    	go k.Run(podCfg.Updates())
    
    	// start the kubelet server
    	if enableServer {
    		go k.ListenAndServe(kubeCfg, kubeDeps.TLSOptions, kubeDeps.Auth, kubeDeps.TracerProvider)
    	}
    	if kubeCfg.ReadOnlyPort > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        rm -f "kubelet.csr"
    
        # Make a superuser client cert with subject "O=system:masters, CN=kubecfg"
        ./easyrsa --dn-mode=org \
          --req-cn=kubecfg --req-org=system:masters \
          --req-c= --req-st= --req-city= --req-email= --req-ou= \
          build-client-full kubecfg nopass) &>"${cert_create_debug_output}" || true
      local output_file_missing=0
      local output_file
      for output_file in \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. cluster/kubectl.sh

    # echo "-=-=-=-=-=-=-=-=-=-="
    # echo "NOTE:"
    # echo "kubectl.sh is deprecated and will be removed soon."
    # echo "please replace all usage with calls to the kubectl"
    # echo "binary and ensure that it is in your PATH."
    # echo ""
    # echo "Please see 'kubectl help config' for more details"
    # echo "about configuring kubectl for your cluster."
    # echo "-=-=-=-=-=-=-=-=-=-="
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top