Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for EncryptionAlgorithm (0.15 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs = append(allErrs, ValidateEtcd(&c.Etcd, field.NewPath("etcd"))...)
    	allErrs = append(allErrs, ValidateEncryptionAlgorithm(c.EncryptionAlgorithm, field.NewPath("encryptionAlgorithm"))...)
    	allErrs = append(allErrs, componentconfigs.Validate(c)...)
    	for _, certError := range ValidateCertValidity(c) {
    		klog.Warningf("WARNING: %s", certError.Error())
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/certlist.go

    			k.config.NotAfter = k.creationTime.
    				Add(ic.ClusterConfiguration.CACertificateValidityPeriod.Duration)
    		}
    	}
    
    	// Use the encryption algorithm from ClusterConfiguration.
    	k.config.EncryptionAlgorithm = ic.ClusterConfiguration.EncryptionAlgorithmType()
    	return &k.config, nil
    }
    
    // CreateFromCA makes and writes a certificate using the given CA cert and key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/zz_generated.conversion.go

    	// INFO: in.CIImageRepository opted out of conversion generation
    	out.FeatureGates = *(*map[string]bool)(unsafe.Pointer(&in.FeatureGates))
    	out.ClusterName = in.ClusterName
    	// WARNING: in.EncryptionAlgorithm requires manual conversion: does not exist in peer-type
    	// WARNING: in.CertificateValidityPeriod requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top