Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TryLoadCertAndKeyFromDisk (0.28 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // NB. this method holds the information about how kubeadm creates kubeconfig files.
    func getKubeConfigSpecs(cfg *kubeadmapi.InitConfiguration) (map[string]*kubeConfigSpec, error) {
    	caCert, caKey, err := pkiutil.TryLoadCertAndKeyFromDisk(cfg.CertificatesDir, kubeadmconstants.CACertAndKeyBaseName)
    	if os.IsNotExist(errors.Cause(err)) {
    		return nil, errors.Wrap(err, "the CA files do not exist, please run `kubeadm init phase certs ca` to generate it")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    	// Adds a pki folder with a ca cert to the temp folder
    	pkidir := testutil.SetupPkiDirWithCertificateAuthority(t, tmpdir)
    
    	// Retrieves ca cert for assertions
    	caCert, _, err := pkiutil.TryLoadCertAndKeyFromDisk(pkidir, kubeadmconstants.CACertAndKeyBaseName)
    	if err != nil {
    		t.Fatalf("couldn't retrieve ca cert: %v", err)
    	}
    
    	// Creates an InitConfiguration pointing to the pkidir folder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top