-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmain.go
97 lines (81 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"os"
"strings"
"syscall"
"github.com/fsnotify/fsnotify"
pluginapi "k8s.io/kubelet/pkg/apis/deviceplugin/v1beta1"
)
const (
ConfigFilePath = "/k8s-host-device-plugin/config.json"
)
func main() {
log.Println("Starging K8s HostDevice Plugin.")
log.Println("Starting FS watcher.")
watcher, err := newFSWatcher(pluginapi.DevicePluginPath)
if err != nil {
log.Println("Failed to created FS watcher.")
os.Exit(1)
}
defer watcher.Close()
log.Println("Starting OS watcher.")
sigs := newOSWatcher(syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
log.Println("Reading /k8s-host-device-plugin/config.json")
raw, err := ioutil.ReadFile(ConfigFilePath)
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
var config HostDevicePluginConfig
json.Unmarshal(raw, &config)
s, _ := json.Marshal(config)
log.Println("loaded config: ", string(s))
restart := true
var devicePlugin *HostDevicePlugin
L:
for {
if restart {
if devicePlugin != nil {
devicePlugin.Stop()
}
devicePlugin, err = NewHostDevicePlugin(config)
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
expandedHostDevicesStr := []string{}
for _, hd := range devicePlugin.hostDevices {
expandedHostDevicesStr = append(expandedHostDevicesStr, fmt.Sprintf("%+v", hd))
}
log.Printf("expanded host devices: %s\n", strings.Join(expandedHostDevicesStr, ","))
if err := devicePlugin.Serve(); err != nil {
log.Println("Could not contact Kubelet, retrying. Did you enable the device plugin feature gate?")
} else {
restart = false
}
}
select {
case event := <-watcher.Events:
if event.Name == pluginapi.KubeletSocket && event.Op&fsnotify.Create == fsnotify.Create {
log.Printf("inotify: %s created, restarting.", pluginapi.KubeletSocket)
restart = true
}
case err := <-watcher.Errors:
log.Printf("inotify: %s", err)
case s := <-sigs:
switch s {
case syscall.SIGHUP:
log.Println("Received SIGHUP, restarting.")
restart = true
default:
log.Printf("Received signal \"%v\", shutting down.", s)
devicePlugin.Stop()
break L
}
}
}
}