Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for externallyManaged (0.3 sec)

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

    	ExpirationDate time.Time
    
    	// ExternallyManaged defines if the certificate is externally managed, that is when
    	// the signing CA certificate is provided without the certificate key (In this case kubeadm can't renew the certificate)
    	ExternallyManaged bool
    }
    
    // newExpirationInfo returns a new ExpirationInfo
    func newExpirationInfo(name string, cert *x509.Certificate, externallyManaged bool) *ExpirationInfo {
    	return &ExpirationInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 05 09:20:34 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	switch caBaseName {
    	case kubeadmconstants.CACertAndKeyBaseName:
    		externallyManaged, err := certsphase.UsingExternalCA(rm.cfg)
    		if err != nil {
    			return false, errors.Wrapf(err, "Error checking external CA condition for %s certificate authority", caBaseName)
    		}
    		return externallyManaged, nil
    	case kubeadmconstants.FrontProxyCACertAndKeyBaseName:
    		externallyManaged, err := certsphase.UsingExternalFrontProxyCA(rm.cfg)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    	// ResidualTimeSeconds represents the duration in seconds relative to the residual time before expiration.
    	ResidualTimeSeconds int64 `json:"residualTime"`
    
    	// ExternallyManaged defines if the certificate is externally managed.
    	ExternallyManaged bool `json:"externallyManaged"`
    
    	// CAName represents the name of the CA that signed the certificate.
    	// This field is empty for self-signed, root CA certificates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/output/types.go

    	ExpirationDate metav1.Time
    
    	// ResidualTimeSeconds represents the duration in seconds relative to the residual time before expiration.
    	ResidualTimeSeconds int64
    
    	// ExternallyManaged defines if the certificate is externally managed.
    	ExternallyManaged bool
    
    	// CAName represents the name of the CA that signed the certificate.
    	// This field is empty for self-signed, root CA certificates.
    	CAName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.conversion.go

    	out.Name = in.Name
    	out.ExpirationDate = in.ExpirationDate
    	out.ResidualTimeSeconds = in.ResidualTimeSeconds
    	out.ExternallyManaged = in.ExternallyManaged
    	out.CAName = in.CAName
    	out.Missing = in.Missing
    	return nil
    }
    
    // Convert_v1alpha3_Certificate_To_output_Certificate is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/certs.go

    				Name:                e.Name,
    				ExpirationDate:      metav1.Time{Time: e.ExpirationDate},
    				ResidualTimeSeconds: int64(e.ResidualTime() / time.Second),
    				CAName:              handler.CAName,
    				ExternallyManaged:   e.ExternallyManaged,
    			})
    		} else {
    			// the certificate does not exist (for any reason)
    			info.Certificates = append(info.Certificates, outputapiv1alpha3.Certificate{
    				Name:    handler.Name,
    				Missing: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top