This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
main.go
96 lines (81 loc) · 2.02 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
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"os"
"syscall"
"github.com/fsnotify/fsnotify"
pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1beta1"
)
const (
ConfigFilePath = "/k8s-rdma-sriov-dev-plugin/config.json"
)
const (
RdmaSriovDpVersion = "0.2"
)
func main() {
log.Println("Starting K8s RDMA SRIOV Device Plugin version=", RdmaSriovDpVersion)
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", ConfigFilePath)
raw, err := ioutil.ReadFile(ConfigFilePath)
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
var config UserConfig
json.Unmarshal(raw, &config)
s, _ := json.Marshal(config)
log.Println("loaded config: ", string(s))
restart := true
var devPlugin *RdmaDevPlugin
L:
for {
if restart {
if devPlugin != nil {
devPlugin.Stop()
}
switch config.Mode {
case "sriov":
devPlugin = NewRdmaSriovDevPlugin(config)
case "hca":
devPlugin = NewRdmaSharedDevPlugin(config)
default:
devPlugin = NewRdmaSharedDevPlugin(config)
}
if err := devPlugin.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)
devPlugin.Stop()
break L
}
}
}
}