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