Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 122 for certFile (0.21 sec)

  1. tests/integration/telemetry/api/stats_test.go

    							ToWorkload: st,
    							Scheme:     scheme.HTTPS,
    							Port:       echo.Port{ServicePort: 15014},
    							HTTP: echo.HTTP{
    								Path: "/metrics",
    							},
    							TLS: echo.TLS{
    								CertFile:           "/etc/certs/custom/cert-chain.pem",
    								KeyFile:            "/etc/certs/custom/key.pem",
    								CaCertFile:         "/etc/certs/custom/root-cert.pem",
    								InsecureSkipVerify: true,
    							},
    						})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	}
    
    	clientConfig := restclient.AnonymousClientConfig(bootstrapClientConfig)
    	pemPath := store.CurrentPath()
    	clientConfig.KeyFile = pemPath
    	clientConfig.CertFile = pemPath
    	if err := writeKubeconfigFromBootstrapping(clientConfig, kubeconfigPath, pemPath); err != nil {
    		return nil, nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/types.go

    	// If not provided, kubeadm will run etcd in a static pod.
    	Endpoints []string
    	// CAFile is an SSL Certificate Authority file used to secure etcd communication.
    	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
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. 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)
  5. cluster/gce/gci/configure-kubeapiserver.sh

          params_ref+=" --etcd-servers=${ETCD_SERVERS:-https://127.0.0.1:2379}"
          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)
  6. 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
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,AttachDetachControllerConfiguration,ReconcilerSyncLoopPeriod
    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
    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/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)
  9. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	return true, nil
    }
    
    func (c fakePodManifestEtcdClient) CheckClusterHealth() error {
    	// 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),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		if cfg.Etcd.External != nil {
    			// 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)
Back to top