Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 114 for keyFiles (0.14 sec)

  1. pkg/kubelet/server/server.go

    	metricsMethodBuckets sets.Set[string]
    	resourceAnalyzer     stats.ResourceAnalyzer
    }
    
    // TLSOptions holds the TLS options.
    type TLSOptions struct {
    	Config   *tls.Config
    	CertFile string
    	KeyFile  string
    }
    
    // containerInterface defines the restful.Container functions used on the root container
    type containerInterface interface {
    	Add(service *restful.WebService) *restful.Container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/types.go

    	CAFile string
    	// CertFile is an SSL certification file used to secure etcd communication.
    	CertFile string
    	// KeyFile is an SSL key file used to secure etcd communication.
    	KeyFile string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // JoinConfiguration contains elements describing a particular node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-kubeapiserver.sh

          params_ref+=" --etcd-cafile=${ETCD_APISERVER_CA_CERT_PATH}"
          params_ref+=" --etcd-certfile=${ETCD_APISERVER_CLIENT_CERT_PATH}"
          params_ref+=" --etcd-keyfile=${ETCD_APISERVER_CLIENT_KEY_PATH}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server_test.go

    		if err != nil {
    			t.Errorf("failed to allocate unused port %v", err)
    		}
    		t.Cleanup(func() { listener.Close() })
    		keyFile := env.IstioSrc + "/pilot/cmd/pilot-agent/status/test-cert/cert.key"
    		crtFile := env.IstioSrc + "/pilot/cmd/pilot-agent/status/test-cert/cert.crt"
    		cert, err := tls.LoadX509KeyPair(crtFile, keyFile)
    		if err != nil {
    			t.Fatalf("could not load TLS keys: %v", err)
    		}
    		serverTLSConfig := &tls.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/etcd/etcd.go

    	client := Client{Endpoints: endpoints}
    
    	var err error
    	var tlsConfig *tls.Config
    	if ca != "" || cert != "" || key != "" {
    		tlsInfo := transport.TLSInfo{
    			CertFile:      cert,
    			KeyFile:       key,
    			TrustedCAFile: ca,
    		}
    		tlsConfig, err = tlsInfo.ClientConfig()
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	client.newEtcdClient = func(endpoints []string) (etcdClient, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    		// a high powered certificate to the kubelet as --kubeconfig and expects
    		// it to be rotated out immediately
    		clientConfig.CertData,
    		clientConfig.KeyData,
    
    		clientConfig.CertFile,
    		clientConfig.KeyFile,
    		newClientsetFn,
    	)
    }
    
    func kubeClientConfigOverrides(s *options.KubeletServer, clientConfig *restclient.Config) {
    	setContentTypeForClient(clientConfig, s.ContentType)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,CSRSigningConfiguration,CertFile
    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,CSRSigningConfiguration,KeyFile
    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,CSRSigningControllerConfiguration,ClusterSigningCertFile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	// Make sure the certificates generated from the upgrade are readable from disk
    	tlsInfo := transport.TLSInfo{
    		CertFile:      filepath.Join(c.CertificatesDir, constants.EtcdCACertName),
    		KeyFile:       filepath.Join(c.CertificatesDir, constants.EtcdHealthcheckClientCertName),
    		TrustedCAFile: filepath.Join(c.CertificatesDir, constants.EtcdHealthcheckClientKeyName),
    	}
    	_, err := tlsInfo.ClientConfig()
    	return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			// External etcd
    			isExternalEtcd = true
    			etcdClient, err := etcdutil.New(
    				cfg.Etcd.External.Endpoints,
    				cfg.Etcd.External.CAFile,
    				cfg.Etcd.External.CertFile,
    				cfg.Etcd.External.KeyFile,
    			)
    			if err != nil {
    				return errors.Wrap(err, "failed to create etcd client for external etcd")
    			}
    			oldEtcdClient = etcdClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.2.md

    equality-based selector in 1.1).
      * Running against a secured etcd requires these flags to be passed to
    kube-apiserver (instead of --etcd-config):
         * --etcd-certfile, --etcd-keyfile (if using client cert auth)
         * --etcd-cafile (if not using system roots)
      * As part of preparation in 1.2 for adding support for protocol buffers (and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
Back to top