This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
nodeagent-model.go
284 lines (239 loc) · 5.62 KB
/
nodeagent-model.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
//go:generate goderive -autoname -dedup .
package common
import (
"fmt"
"regexp"
"strings"
"sync"
"time"
)
type NodeAgentSpec struct {
ChangesAllowed bool
// RebootEnabled bool
Software *Software
Firewall *Firewall
RebootRequired time.Time
}
type NodeAgentCurrent struct {
NodeIsReady bool `mapstructure:"ready" yaml:"ready"`
Software Software
Open []*Allowed
Commit string
Booted time.Time
}
type Software struct {
Swap Package `yaml:",omitempty"`
Kubelet Package `yaml:",omitempty"`
Kubeadm Package `yaml:",omitempty"`
Kubectl Package `yaml:",omitempty"`
Containerruntime Package `yaml:",omitempty"`
KeepaliveD Package `yaml:",omitempty"`
Nginx Package `yaml:",omitempty"`
SSHD Package `yaml:",omitempty"`
Hostname Package `yaml:",omitempty"`
Sysctl Package `yaml:",omitempty"`
Health Package `yaml:",omitempty"`
}
func (s *Software) Merge(sw Software) {
zeroPkg := Package{}
if !sw.Containerruntime.Equals(zeroPkg) {
s.Containerruntime = sw.Containerruntime
}
if !sw.KeepaliveD.Equals(zeroPkg) {
s.KeepaliveD = sw.KeepaliveD
}
if !sw.Nginx.Equals(zeroPkg) {
s.Nginx = sw.Nginx
}
if !sw.Kubeadm.Equals(zeroPkg) {
s.Kubeadm = sw.Kubeadm
}
if !sw.Kubelet.Equals(zeroPkg) {
s.Kubelet = sw.Kubelet
}
if !sw.Kubectl.Equals(zeroPkg) {
s.Kubectl = sw.Kubectl
}
if !sw.Swap.Equals(zeroPkg) {
s.Swap = sw.Swap
}
if !sw.SSHD.Equals(zeroPkg) {
s.SSHD = sw.SSHD
}
if !sw.Hostname.Equals(zeroPkg) {
s.Hostname = sw.Hostname
}
if !sw.Sysctl.Equals(zeroPkg) && s.Sysctl.Config == nil {
s.Sysctl.Config = make(map[string]string)
}
for key, value := range sw.Sysctl.Config {
s.Sysctl.Config[key] = value
}
if !sw.Health.Equals(zeroPkg) && s.Health.Config == nil {
s.Health.Config = make(map[string]string)
}
for key, value := range sw.Health.Config {
s.Health.Config[key] = value
}
}
type Package struct {
Version string `yaml:",omitempty"`
Config map[string]string `yaml:",omitempty"`
}
var prune = regexp.MustCompile("[^a-zA-Z0-9]+")
func configEquals(this, that map[string]string) bool {
if this == nil || that == nil {
return this == nil && that == nil
}
if len(this) != len(that) {
return false
}
for k, v := range this {
thatv, ok := that[k]
if !ok {
return false
}
if prune.ReplaceAllString(v, "") != prune.ReplaceAllString(thatv, "") {
return false
}
}
return true
}
func (p Package) Equals(other Package) bool {
return PackageEquals(p, other)
}
func PackageEquals(this, that Package) bool {
equals := this.Version == that.Version &&
configEquals(this.Config, that.Config)
return equals
}
type Firewall struct {
mux sync.Mutex `yaml:"-"`
FW map[string]*Allowed `yaml:",inline"`
}
func ToFirewall(fw map[string]*Allowed) Firewall {
return Firewall{FW: fw}
}
func (f *Firewall) Merge(fw Firewall) {
f.mux.Lock()
defer f.mux.Unlock()
if len(fw.FW) > 0 && f.FW == nil {
f.FW = make(map[string]*Allowed)
}
for key, value := range fw.FW {
f.FW[key] = value
}
}
func (f *Firewall) Ports() Ports {
ports := make([]*Allowed, 0)
for _, value := range f.FW {
ports = append(ports, value)
}
return ports
}
type Ports []*Allowed
func (p Ports) String() string {
strs := make([]string, len(p))
for idx, port := range p {
strs[idx] = fmt.Sprintf("%s/%s", port.Port, port.Protocol)
}
return strings.Join(strs, " ")
}
type Allowed struct {
Port string
Protocol string
}
func (f Firewall) Contains(other Firewall) bool {
for name, port := range other.FW {
found, ok := f.FW[name]
if !ok {
return false
}
if !deriveEqualPort(*port, *found) {
return false
}
}
return true
}
func (f Firewall) IsContainedIn(ports []*Allowed) bool {
checks:
for _, fwPort := range f.FW {
for _, port := range ports {
if deriveEqualPort(*port, *fwPort) {
continue checks
}
}
return false
}
return true
}
type NodeAgentsCurrentKind struct {
Kind string
Version string
Current CurrentNodeAgents
}
type CurrentNodeAgents struct {
// NA is exported for yaml (de)serialization and not intended to be accessed by any other code outside this package
NA map[string]*NodeAgentCurrent `yaml:",inline"`
mux sync.Mutex `yaml:"-"`
}
func (n *CurrentNodeAgents) Set(id string, na *NodeAgentCurrent) {
n.mux.Lock()
defer n.mux.Unlock()
if n.NA == nil {
n.NA = make(map[string]*NodeAgentCurrent)
}
n.NA[id] = na
}
func (n *CurrentNodeAgents) Get(id string) (*NodeAgentCurrent, bool) {
n.mux.Lock()
defer n.mux.Unlock()
if n.NA == nil {
n.NA = make(map[string]*NodeAgentCurrent)
}
na, ok := n.NA[id]
if !ok {
na = &NodeAgentCurrent{
Open: make([]*Allowed, 0),
}
n.NA[id] = na
}
return na, ok
}
type NodeAgentsSpec struct {
Commit string
NodeAgents DesiredNodeAgents
}
type DesiredNodeAgents struct {
// NA is exported for yaml (de)serialization and not intended to be accessed by any other code outside this package
NA map[string]*NodeAgentSpec `yaml:",inline"`
mux sync.Mutex `yaml:"-"`
}
func (n *DesiredNodeAgents) Delete(id string) {
n.mux.Lock()
defer n.mux.Unlock()
delete(n.NA, id)
}
func (n *DesiredNodeAgents) Get(id string) (*NodeAgentSpec, bool) {
n.mux.Lock()
defer n.mux.Unlock()
if n.NA == nil {
n.NA = make(map[string]*NodeAgentSpec)
}
na, ok := n.NA[id]
if !ok {
na = &NodeAgentSpec{
Software: &Software{},
Firewall: &Firewall{
FW: make(map[string]*Allowed),
},
}
n.NA[id] = na
}
return na, ok
}
type NodeAgentsDesiredKind struct {
Kind string
Version string
Spec NodeAgentsSpec `yaml:",omitempty"`
}