Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for CertificatesDir (0.14 sec)

  1. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	}
    
    	// Initialize the new etcd client if it wasn't pre-initialized
    	if newEtcdClient == nil {
    		etcdClient, err := etcdutil.NewFromCluster(client, cfg.CertificatesDir)
    		if err != nil {
    			return true, errors.Wrap(err, "fatal error creating etcd client")
    		}
    		newEtcdClient = etcdClient
    	}
    
    	// Checking health state of etcd after the upgrade
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/common_test.go

    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			kind: ResetConfiguration
    			force: true
    			cleanupTmpDir: true
    			criSocket: unix:///var/run/containerd/containerd.sock
    			certificatesDir: /etc/kubernetes/pki
    			`, gvExperimental)),
    			expectedKinds: []string{
    				constants.ResetConfigurationKind,
    			},
    			allowExperimental: true,
    			expectErr:         false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/join.go

    func (j *joinData) CertificateWriteDir() string {
    	if j.dryRun {
    		return j.dryRunDir
    	}
    	return j.initCfg.CertificatesDir
    }
    
    // TLSBootstrapCfg returns the cluster-info (kubeconfig).
    func (j *joinData) TLSBootstrapCfg() (*clientcmdapi.Config, error) {
    	if j.tlsBootstrapCfg != nil {
    		return j.tlsBootstrapCfg, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top