-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathmain.go
145 lines (131 loc) · 4.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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// Copyright 2018-2022, Xilinx, Inc.
// Copyright 2023, Advanced Micro Device, Inc.
// Author: Brian Xu([email protected])
// For technical support, please contact [email protected]
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"flag"
"github.com/fsnotify/fsnotify"
log "github.com/sirupsen/logrus"
"io/ioutil"
pluginapi "k8s.io/kubelet/pkg/apis/deviceplugin/v1beta1"
"os"
"strconv"
"strings"
"syscall"
)
var (
U30NameConvention = "CommonName"
U30AllocUnit = "Card"
DeviceNameCustomize = "False"
VirtualDev = "False"
VirtualNum = 1
)
func main() {
// Parse command-line arguments
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError)
flagLogLevel := flag.String("log-level", "info", "Define the logging level: error, info, debug.")
flag.Parse()
switch *flagLogLevel {
case "debug":
log.SetLevel(log.DebugLevel)
case "info":
log.SetLevel(log.InfoLevel)
}
version_path := "/opt/xilinx/k8s-device-plugin/version_num"
if version_file, err := ioutil.ReadFile(version_path); err != nil {
log.Println("Can't read version file %s", version_path)
} else {
version := strings.Trim(string(version_file), "\n")
log.Println("Plugin Version:", version)
}
ReadNameType := os.Getenv("U30NameConvention")
if strings.EqualFold(ReadNameType, "ExactName") {
log.Println("Set U30NameConvention: ExactName")
U30NameConvention = "ExactName"
} else {
log.Println("Set U30NameConvention: CommonName")
U30NameConvention = "CommonName"
}
ReadAllocUnitType := os.Getenv("U30AllocUnit")
if strings.EqualFold(ReadAllocUnitType, "Device") {
log.Println("Set U30AllocUnit: Device")
U30AllocUnit = "Device"
} else {
log.Println("Set U30AllocUnit: Card")
U30AllocUnit = "Card"
}
ReadDeviceNameCustomize := os.Getenv("DeviceNameCustomize")
if strings.EqualFold(ReadDeviceNameCustomize, "True") {
log.Println("Set DeviceNameCustomize: True")
DeviceNameCustomize = "True"
} else {
log.Println("Set DeviceNameCustomize: False")
DeviceNameCustomize = "False"
}
ReadVirtualDev := os.Getenv("VirtualDev")
if strings.EqualFold(ReadVirtualDev, "True") {
log.Println("Virtual Device Mode: On")
VirtualDev = "True"
} else {
log.Println("Virtual Device Mode: OFF")
VirtualDev = "False"
}
ReadVirtualNum := os.Getenv("VirtualNum")
VirtualNum, _ = strconv.Atoi(ReadVirtualNum)
if VirtualNum < 1 {
log.Warn("Invalid input for VirtualNum, will set VirtualNum as 1")
VirtualNum = 1
}
log.Println("VirtualNum:", VirtualNum)
log.Println("Starting FS watcher.")
watcher, err := newFSWatcher(pluginapi.DevicePluginPath)
if err != nil {
log.Printf("Failed to created FS watcher: %s.", err)
os.Exit(1)
}
defer watcher.Close()
log.Println("Starting OS watcher.")
sigs := newOSWatcher(syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
restart := true
var devicePlugin *FPGADevicePlugin
L:
for {
if restart {
devicePlugin = NewFPGADevicePlugin()
restart = false
}
select {
case update := <-devicePlugin.updateChan:
devicePlugin.checkDeviceUpdate(update)
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)
break L
}
}
}
}