parent
a3ea303ab8
commit
62d406e0de
3
Makefile
3
Makefile
|
@ -30,6 +30,9 @@ curl-uptime:
|
||||||
curl-droplets:
|
curl-droplets:
|
||||||
curl --silent http://localhost:8080/droplets
|
curl --silent http://localhost:8080/droplets
|
||||||
|
|
||||||
|
curl-writeconfig:
|
||||||
|
curl --silent http://localhost:8080/writeconfig
|
||||||
|
|
||||||
# this is for release builds using the go.mod files
|
# this is for release builds using the go.mod files
|
||||||
release-build:
|
release-build:
|
||||||
@echo ${REDOMOD}
|
@echo ${REDOMOD}
|
||||||
|
|
|
@ -12,8 +12,7 @@ import (
|
||||||
|
|
||||||
func readConfigFile() {
|
func readConfigFile() {
|
||||||
me.cluster = new(pb.Cluster)
|
me.cluster = new(pb.Cluster)
|
||||||
homeDir, _ := os.UserHomeDir()
|
fullname := filepath.Join(os.Getenv("VIRTIGO_HOME"), "virtigo.json")
|
||||||
fullname := filepath.Join(homeDir, ".config/virtigo.json")
|
|
||||||
pfile, err := os.ReadFile(fullname)
|
pfile, err := os.ReadFile(fullname)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Info("open config file :", err)
|
log.Info("open config file :", err)
|
||||||
|
@ -57,8 +56,7 @@ func readConfigFile() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func writeConfigFile() {
|
func writeConfigFile() {
|
||||||
homeDir, _ := os.UserHomeDir()
|
fullname := filepath.Join(os.Getenv("VIRTIGO_HOME"), "virtigo.json")
|
||||||
fullname := filepath.Join(homeDir, ".config/virtigo.json")
|
|
||||||
cfgfile, err := os.OpenFile(fullname, os.O_RDWR|os.O_CREATE, 0666)
|
cfgfile, err := os.OpenFile(fullname, os.O_RDWR|os.O_CREATE, 0666)
|
||||||
defer cfgfile.Close()
|
defer cfgfile.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -67,4 +65,19 @@ func writeConfigFile() {
|
||||||
}
|
}
|
||||||
json := me.cluster.FormatJSON()
|
json := me.cluster.FormatJSON()
|
||||||
fmt.Fprintln(cfgfile, json)
|
fmt.Fprintln(cfgfile, json)
|
||||||
|
log.Info("Write:", fullname, "OK")
|
||||||
|
}
|
||||||
|
|
||||||
|
func writeConfigFileDroplets() {
|
||||||
|
fullname := filepath.Join(os.Getenv("VIRTIGO_HOME"), "droplets.text")
|
||||||
|
cfgfile, err := os.OpenFile(fullname, os.O_RDWR|os.O_CREATE, 0666)
|
||||||
|
defer cfgfile.Close()
|
||||||
|
if err != nil {
|
||||||
|
log.Info("open config file :", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// text := me.cluster.Droplets.FormatTEXT()
|
||||||
|
text := me.cluster.FormatTEXT()
|
||||||
|
fmt.Fprintln(cfgfile, text)
|
||||||
|
log.Info("Write:", fullname, "OK")
|
||||||
}
|
}
|
||||||
|
|
1
http.go
1
http.go
|
@ -58,6 +58,7 @@ func okHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
if tmp == "/writeconfig" {
|
if tmp == "/writeconfig" {
|
||||||
writeConfigFile()
|
writeConfigFile()
|
||||||
|
writeConfigFileDroplets()
|
||||||
fmt.Fprintln(w, "OK")
|
fmt.Fprintln(w, "OK")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
24
main.go
24
main.go
|
@ -6,6 +6,7 @@ import (
|
||||||
"embed"
|
"embed"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"go.wit.com/dev/alexflint/arg"
|
"go.wit.com/dev/alexflint/arg"
|
||||||
|
@ -18,6 +19,11 @@ var Version string
|
||||||
var resources embed.FS
|
var resources embed.FS
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
if os.Getenv("VIRTIGO_HOME") == "" {
|
||||||
|
homeDir, _ := os.UserHomeDir()
|
||||||
|
fullpath := filepath.Join(homeDir, ".config/virtigo")
|
||||||
|
os.Setenv("VIRTIGO_HOME", fullpath)
|
||||||
|
}
|
||||||
pp := arg.MustParse(&argv)
|
pp := arg.MustParse(&argv)
|
||||||
|
|
||||||
if !argv.Uptime {
|
if !argv.Uptime {
|
||||||
|
@ -39,16 +45,16 @@ func main() {
|
||||||
me.delay = 5 * time.Second
|
me.delay = 5 * time.Second
|
||||||
|
|
||||||
/*
|
/*
|
||||||
log.Info("command line hypervisors:", argv.Hosts)
|
log.Info("command line hypervisors:", argv.Hosts)
|
||||||
for _, name := range argv.Hosts {
|
for _, name := range argv.Hosts {
|
||||||
h := findHypervisor(name)
|
h := findHypervisor(name)
|
||||||
if h != nil {
|
if h != nil {
|
||||||
log.Info("command line hypervisor", name, "already in config file")
|
log.Info("command line hypervisor", name, "already in config file")
|
||||||
continue
|
continue
|
||||||
|
}
|
||||||
|
h = addHypervisor(name)
|
||||||
|
h.pb.Active = true
|
||||||
}
|
}
|
||||||
h = addHypervisor(name)
|
|
||||||
h.pb.Active = true
|
|
||||||
}
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if argv.Start != "" {
|
if argv.Start != "" {
|
||||||
|
|
|
@ -24,7 +24,7 @@ type virtigoT struct {
|
||||||
names []string
|
names []string
|
||||||
hypers []*HyperT
|
hypers []*HyperT
|
||||||
droplets []*DropletT
|
droplets []*DropletT
|
||||||
delay time.Duration // how often to poll the hypervisors
|
delay time.Duration // how often to poll the hypervisors
|
||||||
killcount int
|
killcount int
|
||||||
unstable time.Time // the last time the cluster was incorrect
|
unstable time.Time // the last time the cluster was incorrect
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue