1
0
mirror of https://github.com/rancher/os.git synced 2025-09-15 14:40:51 +00:00

Include Harvester changes

This commit is contained in:
Darren Shepherd
2021-10-02 22:27:31 -07:00
parent 3040e886dc
commit 5e4cfa19ab
15 changed files with 169 additions and 108 deletions

View File

@@ -1,6 +1,6 @@
package config
type Elemental struct {
type Rancher struct {
Install Install `json:"install,omitempty"`
}
@@ -21,8 +21,8 @@ type Install struct {
}
type Config struct {
SSHAuthorizedKeys []string `json:"sshAuthorizedKeys,omitempty"`
Elemental Elemental `json:"elemental,omitempty"`
SSHAuthorizedKeys []string `json:"sshAuthorizedKeys,omitempty"`
Rancher Rancher `json:"rancher,omitempty"`
}
type YipConfig struct {