-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
62 lines (49 loc) · 1.04 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main
import (
"encoding/json"
"fmt"
"net/http"
"os"
"os/signal"
"sync"
"syscall"
)
func main() {
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
done := make(chan bool)
var m sync.Mutex
dockerClient := NewDockerClient()
changed := dockerClient.WatchChanges()
httpServer := NewHttpServer()
httpServer.r.Get("/admin/ingressses", func(rw http.ResponseWriter, r *http.Request) {
rw.Header().Add("Content-Type", "application/json")
b, _ := json.Marshal(&ingressess)
rw.Write(b)
})
go func() {
dockerClient.GenareteSitesFromContainers()
for _, ingress := range ingressess {
httpServer.RegisterIngress(ingress)
}
httpServer.StartServer()
}()
go func() {
for {
<-changed
fmt.Println("New changes detected")
m.Lock()
dockerClient.GenareteSitesFromContainers()
for _, ingress := range ingressess {
httpServer.RegisterIngress(ingress)
}
m.Unlock()
}
}()
go func() {
sig := <-sigs
fmt.Printf("new system signal: %v", sig)
done <- true
}()
<-done
}