Merge pull request #121282 from neolit123/1.29-fix-typos-in-elliptic-kubeadm-api

kubeadm: fix "eliptic" typo in API package
This commit is contained in:
Kubernetes Prow Robot 2023-10-17 16:14:36 +02:00 committed by GitHub
commit 760599db27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -141,7 +141,7 @@ type ClusterConfiguration struct {
ClusterName string
// EncryptionAlgorithm holds the type of asymmetric encryption algorithm used for keys and certificates.
// Can be "RSA" (default algorithm, key size is 2048) or "ECDSA" (uses the P-256 eliptic curve).
// Can be "RSA" (default algorithm, key size is 2048) or "ECDSA" (uses the P-256 elliptic curve).
EncryptionAlgorithm EncryptionAlgorithmType
}

View File

@ -34,7 +34,7 @@ limitations under the License.
// `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 "RSA" (default algorithm, key size is 2048) or
// "ECDSA" (uses the P-256 eliptic curve).
// "ECDSA" (uses the P-256 elliptic curve).
//
// Migration from old kubeadm config versions
//

View File

@ -142,7 +142,7 @@ type ClusterConfiguration struct {
ClusterName string `json:"clusterName,omitempty"`
// EncryptionAlgorithm holds the type of asymmetric encryption algorithm used for keys and certificates.
// Can be "RSA" (default algorithm, key size is 2048) or "ECDSA" (uses the P-256 eliptic curve).
// Can be "RSA" (default algorithm, key size is 2048) or "ECDSA" (uses the P-256 elliptic curve).
// +optional
EncryptionAlgorithm EncryptionAlgorithmType `json:"encryptionAlgorithm,omitempty"`
}