-
Notifications
You must be signed in to change notification settings - Fork 1.5k
machines: add the authorized keys for a pool using a machine config #1150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3e15d4f
vendor: machine-config-operator for MachineConfig type
staebler 8683b8e
asset/machines: add manifests for MachineConfig
abhinavdahiya f2eacf3
asset/machines/master: allow adding MachineConfigs for control-plane …
abhinavdahiya e4d5ec9
asset/machines/worker: allow adding MachineConfigs for compute machin…
abhinavdahiya 5623cbd
machines: add the authorized keys for a pool using a machine config
abhinavdahiya File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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,37 @@ | ||
| package machineconfig | ||
|
|
||
| import ( | ||
| "fmt" | ||
|
|
||
| ignv2_2types "github.com/coreos/ignition/config/v2_2/types" | ||
| mcfgv1 "github.com/openshift/machine-config-operator/pkg/apis/machineconfiguration.openshift.io/v1" | ||
| metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
| ) | ||
|
|
||
| // ForAuthorizedKeys creates the MachineConfig to set the authorized key for `core` user. | ||
| func ForAuthorizedKeys(key string, role string) *mcfgv1.MachineConfig { | ||
| return &mcfgv1.MachineConfig{ | ||
| TypeMeta: metav1.TypeMeta{ | ||
| APIVersion: mcfgv1.SchemeGroupVersion.String(), | ||
| Kind: "MachineConfig", | ||
| }, | ||
| ObjectMeta: metav1.ObjectMeta{ | ||
| Name: fmt.Sprintf("99-%s-ssh", role), | ||
| Labels: map[string]string{ | ||
| "machineconfiguration.openshift.io/role": role, | ||
| }, | ||
| }, | ||
| Spec: mcfgv1.MachineConfigSpec{ | ||
| Config: ignv2_2types.Config{ | ||
| Ignition: ignv2_2types.Ignition{ | ||
| Version: ignv2_2types.MaxVersion.String(), | ||
| }, | ||
| Passwd: ignv2_2types.Passwd{ | ||
| Users: []ignv2_2types.PasswdUser{{ | ||
| Name: "core", SSHAuthorizedKeys: []ignv2_2types.SSHAuthorizedKey{ignv2_2types.SSHAuthorizedKey(key)}, | ||
| }}, | ||
| }, | ||
| }, | ||
| }, | ||
| } | ||
| } |
This file contains hidden or 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,63 @@ | ||
| package machineconfig | ||
|
|
||
| import ( | ||
| "fmt" | ||
| "os" | ||
| "path/filepath" | ||
|
|
||
| "github.com/ghodss/yaml" | ||
|
|
||
| mcfgv1 "github.com/openshift/machine-config-operator/pkg/apis/machineconfiguration.openshift.io/v1" | ||
|
|
||
| "github.com/openshift/installer/pkg/asset" | ||
| ) | ||
|
|
||
| const ( | ||
| machineConfigFileName = "99_openshift-machineconfig_%s.yaml" | ||
| ) | ||
|
|
||
| var ( | ||
| machineConfigFileNamePattern = fmt.Sprintf(machineConfigFileName, "*") | ||
| ) | ||
|
|
||
| // Manifests creates manifest files containing the MachineConfigs. | ||
| func Manifests(configs []*mcfgv1.MachineConfig, role, directory string) ([]*asset.File, error) { | ||
| data := []byte{} | ||
| for _, c := range configs { | ||
| if c == nil { | ||
| continue | ||
| } | ||
| configData, err := yaml.Marshal(c) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
| data = append(data, []byte("---\n")...) | ||
| data = append(data, configData...) | ||
| } | ||
| if len(data) == 0 { | ||
| return nil, nil | ||
| } | ||
| return []*asset.File{ | ||
| { | ||
| Filename: filepath.Join(directory, fmt.Sprintf(machineConfigFileName, role)), | ||
| Data: data, | ||
| }, | ||
| }, nil | ||
| } | ||
|
|
||
| // IsManifest tests whether the specified filename is a MachineConfig manifest. | ||
| func IsManifest(role, filename string) bool { | ||
| return fmt.Sprintf(machineConfigFileName, role) == filename | ||
| } | ||
|
|
||
| // Load loads the MachineConfig manifests. | ||
| func Load(f asset.FileFetcher, role, directory string) ([]*asset.File, error) { | ||
| file, err := f.FetchByName(filepath.Join(directory, fmt.Sprintf(machineConfigFileName, role))) | ||
| if err != nil { | ||
| if os.IsNotExist(err) { | ||
| return nil, nil | ||
| } | ||
| return nil, err | ||
| } | ||
| return []*asset.File{file}, nil | ||
| } | ||
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.