show virtigod version
This commit is contained in:
parent
fc82e095ef
commit
f90c4af25e
|
@ -43,7 +43,6 @@ func handleMachine(r *http.Request, w http.ResponseWriter, hostname string, data
|
||||||
am := new(zoopb.Machine)
|
am := new(zoopb.Machine)
|
||||||
am.Hostname = newm.Hostname
|
am.Hostname = newm.Hostname
|
||||||
am.Memory = newm.Memory
|
am.Memory = newm.Memory
|
||||||
// me.machines2.Append(am)
|
|
||||||
me.machines.Append(newm)
|
me.machines.Append(newm)
|
||||||
log.Info("new machine", am.Hostname, am.Memory)
|
log.Info("new machine", am.Hostname, am.Memory)
|
||||||
return
|
return
|
||||||
|
|
10
main.go
10
main.go
|
@ -39,19 +39,11 @@ func main() {
|
||||||
me.hostname, _ = os.Hostname()
|
me.hostname, _ = os.Hostname()
|
||||||
me.pollDelay = time.Hour
|
me.pollDelay = time.Hour
|
||||||
me.machines = zoopb.NewMachines()
|
me.machines = zoopb.NewMachines()
|
||||||
// me.machines2 = zoopb.NewMachines()
|
|
||||||
if err := me.machines.ConfigLoad(); err != nil {
|
if err := me.machines.ConfigLoad(); err != nil {
|
||||||
log.Warn("load config failed", err)
|
log.Warn("load config failed", err)
|
||||||
os.Exit(-1)
|
os.Exit(-1)
|
||||||
}
|
}
|
||||||
/*
|
// me.upgrade = make(map[string]bool) // used to trigger upgrade attempts
|
||||||
if err := me.machines2.ConfigLoad(); err != nil {
|
|
||||||
log.Warn("load config failed", err)
|
|
||||||
os.Exit(-1)
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
// me.targets = make(map[string]string) // keep track of what versions the machines should be running
|
|
||||||
me.upgrade = make(map[string]bool) // used to trigger upgrade attempts
|
|
||||||
|
|
||||||
go NewWatchdog()
|
go NewWatchdog()
|
||||||
|
|
||||||
|
|
15
structs.go
15
structs.go
|
@ -15,14 +15,13 @@ var me *zookeep
|
||||||
|
|
||||||
// this app's variables
|
// this app's variables
|
||||||
type zookeep struct {
|
type zookeep struct {
|
||||||
hostname string // my fqdn dns zookeeper hostname
|
hostname string // my fqdn dns zookeeper hostname
|
||||||
pollDelay time.Duration // how often to report our status
|
pollDelay time.Duration // how often to report our status
|
||||||
dog *time.Ticker // the watchdog timer
|
dog *time.Ticker // the watchdog timer
|
||||||
dogchan chan bool // can kill the watchdog
|
dogchan chan bool // can kill the watchdog
|
||||||
distro string // debian,redhat,gentoo,macos,wincrap
|
distro string // debian,redhat,gentoo,macos,wincrap
|
||||||
packages *zoopb.Packages // installed packages and versions
|
packages *zoopb.Packages // installed packages and versions
|
||||||
machines *zoopb.Machines // every machine that has reported itself to the zookeeper
|
machines *zoopb.Machines // every machine that has reported itself to the zookeeper
|
||||||
// machines2 *zoopb.Machines // every machine that has reported itself to the zookeeper
|
|
||||||
targets map[string]string // what versions the machines should be running
|
targets map[string]string // what versions the machines should be running
|
||||||
upgrade map[string]bool // use this to trigger builds
|
upgrade map[string]bool // use this to trigger builds
|
||||||
myGui *gui.Node // the gui toolkit handle
|
myGui *gui.Node // the gui toolkit handle
|
||||||
|
|
Loading…
Reference in New Issue