Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for EncryptionAlgorithm (0.17 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //     `Scheduler.ExtraArgs`, `Etcd.Local.ExtraArgs`. Also to `NodeRegistrationOptions.KubeletExtraArgs`.
    //   - Add `ClusterConfiguration.EncryptionAlgorithm` that can be used to set the asymmetric encryption algorithm
    //     used for this cluster's keys and certificates. Can be one of "RSA-2048" (default), "RSA-3072", "RSA-4096" or "ECDSA-P256".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.util.internal.EncryptionAlgorithm$IVLoader> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (EncryptionAlgorithm.java:0)
    Class <org.gradle.util.internal.EncryptionAlgorithm$Session> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (EncryptionAlgorithm.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top