mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
Merge pull request #125388 from neolit123/1.31-fix-kubeconfig-ecdsa
kubeadm: fix the generation of ECDSA keys in kubeconfig files
This commit is contained in:
commit
c77d954273
71
cmd/kubeadm/app/apis/kubeadm/types_test.go
Normal file
71
cmd/kubeadm/app/apis/kubeadm/types_test.go
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2024 The Kubernetes Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package kubeadm
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"k8s.io/kubernetes/cmd/kubeadm/app/features"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestClusterConfigurationEncryptionAlgorithmType(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
cfg *ClusterConfiguration
|
||||||
|
expectedResult EncryptionAlgorithmType
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "feature gate is set to true, return ECDSA-P256",
|
||||||
|
cfg: &ClusterConfiguration{
|
||||||
|
FeatureGates: map[string]bool{
|
||||||
|
features.PublicKeysECDSA: true,
|
||||||
|
},
|
||||||
|
EncryptionAlgorithm: EncryptionAlgorithmRSA4096,
|
||||||
|
},
|
||||||
|
expectedResult: EncryptionAlgorithmECDSAP256,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "feature gate is set to false, return the default RSA-2048",
|
||||||
|
cfg: &ClusterConfiguration{
|
||||||
|
FeatureGates: map[string]bool{
|
||||||
|
features.PublicKeysECDSA: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
expectedResult: EncryptionAlgorithmRSA2048,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "feature gate is not set, return the field value",
|
||||||
|
cfg: &ClusterConfiguration{
|
||||||
|
EncryptionAlgorithm: EncryptionAlgorithmRSA4096,
|
||||||
|
},
|
||||||
|
expectedResult: EncryptionAlgorithmRSA4096,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "feature gate and field are not set, return empty string",
|
||||||
|
cfg: &ClusterConfiguration{},
|
||||||
|
expectedResult: "",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tc := range tests {
|
||||||
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
|
if result := tc.cfg.EncryptionAlgorithmType(); result != tc.expectedResult {
|
||||||
|
t.Errorf("expected result: %s, got: %s", tc.expectedResult, result)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
@ -66,12 +66,13 @@ type tokenAuth struct {
|
|||||||
|
|
||||||
// kubeConfigSpec struct holds info required to build a KubeConfig object
|
// kubeConfigSpec struct holds info required to build a KubeConfig object
|
||||||
type kubeConfigSpec struct {
|
type kubeConfigSpec struct {
|
||||||
CACert *x509.Certificate
|
CACert *x509.Certificate
|
||||||
APIServer string
|
APIServer string
|
||||||
ClientName string
|
ClientName string
|
||||||
ClientCertNotAfter time.Time
|
ClientCertNotAfter time.Time
|
||||||
TokenAuth *tokenAuth `datapolicy:"token"`
|
TokenAuth *tokenAuth `datapolicy:"token"`
|
||||||
ClientCertAuth *clientCertAuth `datapolicy:"security-key"`
|
ClientCertAuth *clientCertAuth `datapolicy:"security-key"`
|
||||||
|
EncryptionAlgorithm kubeadmapi.EncryptionAlgorithmType
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateJoinControlPlaneKubeConfigFiles will create and write to disk the kubeconfig files required by kubeadm
|
// CreateJoinControlPlaneKubeConfigFiles will create and write to disk the kubeconfig files required by kubeadm
|
||||||
@ -212,7 +213,8 @@ func newClientCertConfigFromKubeConfigSpec(spec *kubeConfigSpec) pkiutil.CertCon
|
|||||||
Organization: spec.ClientCertAuth.Organizations,
|
Organization: spec.ClientCertAuth.Organizations,
|
||||||
Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
|
Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
|
||||||
},
|
},
|
||||||
NotAfter: spec.ClientCertNotAfter,
|
NotAfter: spec.ClientCertNotAfter,
|
||||||
|
EncryptionAlgorithm: spec.EncryptionAlgorithm,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -324,7 +326,8 @@ func WriteKubeConfigWithClientCert(out io.Writer, cfg *kubeadmapi.InitConfigurat
|
|||||||
CAKey: caKey,
|
CAKey: caKey,
|
||||||
Organizations: organizations,
|
Organizations: organizations,
|
||||||
},
|
},
|
||||||
ClientCertNotAfter: notAfter,
|
ClientCertNotAfter: notAfter,
|
||||||
|
EncryptionAlgorithm: cfg.ClusterConfiguration.EncryptionAlgorithmType(),
|
||||||
}
|
}
|
||||||
|
|
||||||
return writeKubeConfigFromSpec(out, spec, cfg.ClusterName)
|
return writeKubeConfigFromSpec(out, spec, cfg.ClusterName)
|
||||||
@ -353,7 +356,8 @@ func WriteKubeConfigWithToken(out io.Writer, cfg *kubeadmapi.InitConfiguration,
|
|||||||
TokenAuth: &tokenAuth{
|
TokenAuth: &tokenAuth{
|
||||||
Token: token,
|
Token: token,
|
||||||
},
|
},
|
||||||
ClientCertNotAfter: notAfter,
|
ClientCertNotAfter: notAfter,
|
||||||
|
EncryptionAlgorithm: cfg.ClusterConfiguration.EncryptionAlgorithmType(),
|
||||||
}
|
}
|
||||||
|
|
||||||
return writeKubeConfigFromSpec(out, spec, cfg.ClusterName)
|
return writeKubeConfigFromSpec(out, spec, cfg.ClusterName)
|
||||||
@ -452,7 +456,8 @@ func getKubeConfigSpecsBase(cfg *kubeadmapi.InitConfiguration) (map[string]*kube
|
|||||||
ClientCertAuth: &clientCertAuth{
|
ClientCertAuth: &clientCertAuth{
|
||||||
Organizations: []string{kubeadmconstants.ClusterAdminsGroupAndClusterRoleBinding},
|
Organizations: []string{kubeadmconstants.ClusterAdminsGroupAndClusterRoleBinding},
|
||||||
},
|
},
|
||||||
ClientCertNotAfter: notAfter,
|
ClientCertNotAfter: notAfter,
|
||||||
|
EncryptionAlgorithm: cfg.ClusterConfiguration.EncryptionAlgorithmType(),
|
||||||
},
|
},
|
||||||
kubeadmconstants.SuperAdminKubeConfigFileName: {
|
kubeadmconstants.SuperAdminKubeConfigFileName: {
|
||||||
APIServer: controlPlaneEndpoint,
|
APIServer: controlPlaneEndpoint,
|
||||||
@ -460,7 +465,8 @@ func getKubeConfigSpecsBase(cfg *kubeadmapi.InitConfiguration) (map[string]*kube
|
|||||||
ClientCertAuth: &clientCertAuth{
|
ClientCertAuth: &clientCertAuth{
|
||||||
Organizations: []string{kubeadmconstants.SystemPrivilegedGroup},
|
Organizations: []string{kubeadmconstants.SystemPrivilegedGroup},
|
||||||
},
|
},
|
||||||
ClientCertNotAfter: notAfter,
|
ClientCertNotAfter: notAfter,
|
||||||
|
EncryptionAlgorithm: cfg.ClusterConfiguration.EncryptionAlgorithmType(),
|
||||||
},
|
},
|
||||||
kubeadmconstants.KubeletKubeConfigFileName: {
|
kubeadmconstants.KubeletKubeConfigFileName: {
|
||||||
APIServer: controlPlaneEndpoint,
|
APIServer: controlPlaneEndpoint,
|
||||||
@ -468,19 +474,22 @@ func getKubeConfigSpecsBase(cfg *kubeadmapi.InitConfiguration) (map[string]*kube
|
|||||||
ClientCertAuth: &clientCertAuth{
|
ClientCertAuth: &clientCertAuth{
|
||||||
Organizations: []string{kubeadmconstants.NodesGroup},
|
Organizations: []string{kubeadmconstants.NodesGroup},
|
||||||
},
|
},
|
||||||
ClientCertNotAfter: notAfter,
|
ClientCertNotAfter: notAfter,
|
||||||
|
EncryptionAlgorithm: cfg.ClusterConfiguration.EncryptionAlgorithmType(),
|
||||||
},
|
},
|
||||||
kubeadmconstants.ControllerManagerKubeConfigFileName: {
|
kubeadmconstants.ControllerManagerKubeConfigFileName: {
|
||||||
APIServer: localAPIEndpoint,
|
APIServer: localAPIEndpoint,
|
||||||
ClientName: kubeadmconstants.ControllerManagerUser,
|
ClientName: kubeadmconstants.ControllerManagerUser,
|
||||||
ClientCertAuth: &clientCertAuth{},
|
ClientCertAuth: &clientCertAuth{},
|
||||||
ClientCertNotAfter: notAfter,
|
ClientCertNotAfter: notAfter,
|
||||||
|
EncryptionAlgorithm: cfg.ClusterConfiguration.EncryptionAlgorithmType(),
|
||||||
},
|
},
|
||||||
kubeadmconstants.SchedulerKubeConfigFileName: {
|
kubeadmconstants.SchedulerKubeConfigFileName: {
|
||||||
APIServer: localAPIEndpoint,
|
APIServer: localAPIEndpoint,
|
||||||
ClientName: kubeadmconstants.SchedulerUser,
|
ClientName: kubeadmconstants.SchedulerUser,
|
||||||
ClientCertAuth: &clientCertAuth{},
|
ClientCertAuth: &clientCertAuth{},
|
||||||
ClientCertNotAfter: notAfter,
|
ClientCertNotAfter: notAfter,
|
||||||
|
EncryptionAlgorithm: cfg.ClusterConfiguration.EncryptionAlgorithmType(),
|
||||||
},
|
},
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
@ -84,7 +84,8 @@ func TestGetKubeConfigSpecs(t *testing.T) {
|
|||||||
{
|
{
|
||||||
LocalAPIEndpoint: kubeadmapi.APIEndpoint{AdvertiseAddress: "1.2.3.4", BindPort: 1234},
|
LocalAPIEndpoint: kubeadmapi.APIEndpoint{AdvertiseAddress: "1.2.3.4", BindPort: 1234},
|
||||||
ClusterConfiguration: kubeadmapi.ClusterConfiguration{
|
ClusterConfiguration: kubeadmapi.ClusterConfiguration{
|
||||||
CertificatesDir: pkidir,
|
CertificatesDir: pkidir,
|
||||||
|
EncryptionAlgorithm: kubeadmapi.EncryptionAlgorithmECDSAP256,
|
||||||
},
|
},
|
||||||
NodeRegistration: kubeadmapi.NodeRegistrationOptions{Name: "valid-node-name"},
|
NodeRegistration: kubeadmapi.NodeRegistrationOptions{Name: "valid-node-name"},
|
||||||
},
|
},
|
||||||
@ -180,6 +181,11 @@ func TestGetKubeConfigSpecs(t *testing.T) {
|
|||||||
t.Errorf("getKubeConfigSpecs for %s Organizations is %v, expected %v", assertion.kubeConfigFile, spec.ClientCertAuth.Organizations, assertion.organizations)
|
t.Errorf("getKubeConfigSpecs for %s Organizations is %v, expected %v", assertion.kubeConfigFile, spec.ClientCertAuth.Organizations, assertion.organizations)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Assert EncryptionAlgorithm
|
||||||
|
if spec.EncryptionAlgorithm != cfg.EncryptionAlgorithm {
|
||||||
|
t.Errorf("getKubeConfigSpecs for %s EncryptionAlgorithm is %s, expected %s", assertion.kubeConfigFile, spec.EncryptionAlgorithm, cfg.EncryptionAlgorithm)
|
||||||
|
}
|
||||||
|
|
||||||
// Asserts InitConfiguration values injected into spec
|
// Asserts InitConfiguration values injected into spec
|
||||||
controlPlaneEndpoint, err := kubeadmutil.GetControlPlaneEndpoint(cfg.ControlPlaneEndpoint, &cfg.LocalAPIEndpoint)
|
controlPlaneEndpoint, err := kubeadmutil.GetControlPlaneEndpoint(cfg.ControlPlaneEndpoint, &cfg.LocalAPIEndpoint)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user