Compare commits
No commits in common. "c0e8dcee6f681f3fd51550408cac398d755733a3" and "6e432c2a06e64f237478bf222bc30a43b02522bc" have entirely different histories.
c0e8dcee6f
...
6e432c2a06
@ -64,8 +64,6 @@ type Config struct {
|
||||
|
||||
Storage StorageConfig
|
||||
|
||||
Mounts []MountDef
|
||||
|
||||
Groups []GroupDef
|
||||
Users []UserDef
|
||||
|
||||
@ -96,12 +94,6 @@ type VolumeDef struct {
|
||||
}
|
||||
}
|
||||
|
||||
type MountDef struct {
|
||||
Dev string
|
||||
Path string
|
||||
Options string
|
||||
}
|
||||
|
||||
type GroupDef struct {
|
||||
Name string
|
||||
Gid int
|
||||
|
@ -8,12 +8,6 @@ import (
|
||||
|
||||
type Host struct {
|
||||
Name string
|
||||
|
||||
ClusterName string
|
||||
|
||||
Labels map[string]string
|
||||
Annotations map[string]string
|
||||
|
||||
MACs []string
|
||||
IPs []string
|
||||
|
||||
@ -23,8 +17,7 @@ type Host struct {
|
||||
Initrd string
|
||||
Versions map[string]string
|
||||
|
||||
BootstrapConfig string
|
||||
Config string
|
||||
Config string
|
||||
}
|
||||
|
||||
func (h *Host) WriteHashDataTo(w io.Writer) error {
|
||||
@ -33,8 +26,5 @@ func (h *Host) WriteHashDataTo(w io.Writer) error {
|
||||
Initrd: h.Initrd,
|
||||
Versions: h.Versions,
|
||||
Config: h.Config,
|
||||
|
||||
Labels: map[string]string{},
|
||||
Annotations: map[string]string{},
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user