-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
🌱 AzureMachinePool/AzureManagedControlPlane: generate ssh key when is not set
- Loading branch information
Showing
20 changed files
with
695 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
Copyright 2020 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 v1alpha3 | ||
|
||
import ( | ||
"encoding/base64" | ||
|
||
"golang.org/x/crypto/ssh" | ||
|
||
utilSSH "sigs.k8s.io/cluster-api-provider-azure/util/ssh" | ||
) | ||
|
||
// SetDefaultSSHPublicKey sets the default SSHPublicKey for an AzureMachinePool | ||
func (amp *AzureMachinePool) SetDefaultSSHPublicKey() error { | ||
sshKeyData := amp.Spec.Template.SSHPublicKey | ||
if sshKeyData == "" { | ||
_, publicRsaKey, err := utilSSH.GenerateSSHKey() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
amp.Spec.Template.SSHPublicKey = base64.StdEncoding.EncodeToString(ssh.MarshalAuthorizedKey(publicRsaKey)) | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
Copyright 2020 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 v1alpha3 | ||
|
||
import ( | ||
"testing" | ||
|
||
. "github.com/onsi/gomega" | ||
) | ||
|
||
func TestAzureMachinePool_SetDefaultSSHPublicKey(t *testing.T) { | ||
g := NewWithT(t) | ||
|
||
type test struct { | ||
amp *AzureMachinePool | ||
} | ||
|
||
existingPublicKey := "testpublickey" | ||
publicKeyExistTest := test{amp: createMachinePoolWithSSHPublicKey(t, existingPublicKey)} | ||
publicKeyNotExistTest := test{amp: createMachinePoolWithSSHPublicKey(t, "")} | ||
|
||
err := publicKeyExistTest.amp.SetDefaultSSHPublicKey() | ||
g.Expect(err).To(BeNil()) | ||
g.Expect(publicKeyExistTest.amp.Spec.Template.SSHPublicKey).To(Equal(existingPublicKey)) | ||
|
||
err = publicKeyNotExistTest.amp.SetDefaultSSHPublicKey() | ||
g.Expect(err).To(BeNil()) | ||
g.Expect(publicKeyNotExistTest.amp.Spec.Template.SSHPublicKey).NotTo(BeEmpty()) | ||
} | ||
|
||
func createMachinePoolWithSSHPublicKey(t *testing.T, sshPublicKey string) *AzureMachinePool { | ||
return hardcodedAzureMachinePoolWithSSHKey(sshPublicKey) | ||
} | ||
|
||
func hardcodedAzureMachinePoolWithSSHKey(sshPublicKey string) *AzureMachinePool { | ||
return &AzureMachinePool{ | ||
Spec: AzureMachinePoolSpec{ | ||
Template: AzureMachineTemplate{ | ||
SSHPublicKey: sshPublicKey, | ||
}, | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.