Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UsingExternalEtcdCA (0.21 sec)

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

    	}
    
    	return true, nil
    }
    
    // UsingExternalEtcdCA determines whether the user is relying on an external etcd CA. We currently implicitly determine this is the case
    // when the etcd CA Cert is present but the etcd CA Key is not.
    // In case we are using an external etcd CA, the function validates the certificates signed by etcd CA that should be provided by the user.
    func UsingExternalEtcdCA(cfg *kubeadmapi.ClusterConfiguration) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		}
    		return externallyManaged, nil
    	case kubeadmconstants.EtcdCACertAndKeyBaseName:
    		externallyManaged, err := certsphase.UsingExternalEtcdCA(rm.cfg)
    		if err != nil {
    			return false, errors.Wrapf(err, "Error checking external CA condition for %s certificate authority", caBaseName)
    		}
    		return externallyManaged, nil
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top