forked from rancher/local-path-provisioner
-
Notifications
You must be signed in to change notification settings - Fork 6
/
provisioner.go
492 lines (440 loc) · 11.9 KB
/
provisioner.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
package main
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
"reflect"
"strconv"
"strings"
"sync"
"time"
"github.com/Sirupsen/logrus"
"github.com/pkg/errors"
uuid "github.com/satori/go.uuid"
pvController "github.com/kubernetes-incubator/external-storage/lib/controller"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
clientset "k8s.io/client-go/kubernetes"
)
type ActionType string
const (
ActionTypeCreate = "create"
ActionTypeDelete = "delete"
)
const (
KeyNode = "kubernetes.io/hostname"
NodeDefaultNonListedNodes = "DEFAULT_VGS_FOR_NON_LISTED_NODES"
)
var (
CmdTimeoutCounts = 120
ConfigFileCheckInterval = 5 * time.Second
)
type LocalLVMProvisioner struct {
stopCh chan struct{}
kubeClient *clientset.Clientset
namespace string
helperImage string
config *Config
configData *ConfigData
configFile string
configMutex *sync.RWMutex
}
type NodeVGMapData struct {
Node string `json:"node,omitempty"`
Path string `json:"path,omitempty"`
VGs []string `json:"vgs,omitempty"`
}
type ConfigData struct {
NodeVGMap []*NodeVGMapData `json:"NodeVGMap,omitempty"`
}
type NodeVGMap struct {
Path string
VGs map[string]struct{}
}
type Config struct {
NodeVGMap map[string]*NodeVGMap
}
func NewProvisioner(stopCh chan struct{}, kubeClient *clientset.Clientset, configFile, namespace, helperImage string) (*LocalLVMProvisioner, error) {
p := &LocalLVMProvisioner{
stopCh: stopCh,
kubeClient: kubeClient,
namespace: namespace,
helperImage: helperImage,
// config will be updated shortly by p.refreshConfig()
config: nil,
configFile: configFile,
configData: nil,
configMutex: &sync.RWMutex{},
}
if err := p.refreshConfig(); err != nil {
return nil, err
}
p.watchAndRefreshConfig()
return p, nil
}
func (p *LocalLVMProvisioner) refreshConfig() error {
p.configMutex.Lock()
defer p.configMutex.Unlock()
configData, err := loadConfigFile(p.configFile)
if err != nil {
return err
}
// no need to update
if reflect.DeepEqual(configData, p.configData) {
return nil
}
config, err := canonicalizeConfig(configData)
if err != nil {
return err
}
// only update the config if the new config file is valid
p.configData = configData
p.config = config
output, err := json.Marshal(p.configData)
if err != nil {
return err
}
logrus.Debugf("Applied config: %v", string(output))
return err
}
func (p *LocalLVMProvisioner) watchAndRefreshConfig() {
go func() {
for {
select {
case <-time.Tick(ConfigFileCheckInterval):
if err := p.refreshConfig(); err != nil {
logrus.Errorf("failed to load the new config file: %v", err)
}
case <-p.stopCh:
logrus.Infof("stop watching config file")
return
}
}
}()
}
func (p *LocalLVMProvisioner) getPathAndVGOnNode(node string) (string, string, error) {
p.configMutex.RLock()
defer p.configMutex.RUnlock()
if p.config == nil {
return "", "", fmt.Errorf("no valid config available")
}
c := p.config
npMap := c.NodeVGMap[node]
if npMap == nil {
npMap = c.NodeVGMap[NodeDefaultNonListedNodes]
if npMap == nil {
return "", "", fmt.Errorf("config doesn't contain node %v, and no %v available", node, NodeDefaultNonListedNodes)
}
logrus.Debugf("config doesn't contain node %v, use %v instead", node, NodeDefaultNonListedNodes)
}
if npMap.Path == "" {
return "", "", fmt.Errorf("no mount path defined on node %v", node)
}
vgs := npMap.VGs
if len(vgs) == 0 {
return "", "", fmt.Errorf("no local volume group available on node %v", node)
}
vg := ""
for vg = range vgs {
break
}
return npMap.Path, vg, nil
}
func (p *LocalLVMProvisioner) Provision(opts pvController.VolumeOptions) (*v1.PersistentVolume, error) {
pvc := opts.PVC
if pvc.Spec.Selector != nil {
return nil, fmt.Errorf("claim.Spec.Selector is not supported")
}
for _, accessMode := range pvc.Spec.AccessModes {
if accessMode != v1.ReadWriteOnce {
return nil, fmt.Errorf("Only support ReadWriteOnce access mode")
}
}
node := opts.SelectedNode
if opts.SelectedNode == nil {
return nil, fmt.Errorf("configuration error, no node was specified")
}
size, ok := pvc.Spec.Resources.Requests[v1.ResourceStorage]
if !ok {
return nil, fmt.Errorf("Cannot handle physical volume claim without storage size request")
}
if size.Value() < 1024*1024*4 {
return nil, fmt.Errorf("Physical volume needs to be at least 4MB in size")
}
mountPath, vgName, err := p.getPathAndVGOnNode(node.Name)
if err != nil {
return nil, err
}
pvcNameParts := []string{pvc.Namespace, pvc.Name}
pvcName := strings.Join(pvcNameParts, "-")
name := opts.PVName
path := filepath.Join(mountPath, pvcName)
logrus.Infof("Creating volume %v (%v/%v) at %v:%v", name, pvc.Namespace, pvc.Name, node.Name, path)
createVGOperationArgs := []string{
"create",
name,
mountPath,
vgName,
pvcName,
strconv.FormatInt(size.Value(), 10),
}
if err := p.createHelperPod(ActionTypeCreate, createVGOperationArgs, node.Name); err != nil {
return nil, err
}
fs := v1.PersistentVolumeFilesystem
hostPathType := v1.HostPathDirectoryOrCreate
return &v1.PersistentVolume{
ObjectMeta: metav1.ObjectMeta{
Name: name,
},
Spec: v1.PersistentVolumeSpec{
PersistentVolumeReclaimPolicy: opts.PersistentVolumeReclaimPolicy,
AccessModes: pvc.Spec.AccessModes,
VolumeMode: &fs,
Capacity: v1.ResourceList{
v1.ResourceName(v1.ResourceStorage): pvc.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)],
},
PersistentVolumeSource: v1.PersistentVolumeSource{
HostPath: &v1.HostPathVolumeSource{
Path: path,
Type: &hostPathType,
},
},
NodeAffinity: &v1.VolumeNodeAffinity{
Required: &v1.NodeSelector{
NodeSelectorTerms: []v1.NodeSelectorTerm{
{
MatchExpressions: []v1.NodeSelectorRequirement{
{
Key: KeyNode,
Operator: v1.NodeSelectorOpIn,
Values: []string{
node.Name,
},
},
},
},
},
},
},
},
}, nil
}
func (p *LocalLVMProvisioner) Delete(pv *v1.PersistentVolume) (err error) {
defer func() {
err = errors.Wrapf(err, "failed to delete volume %v", pv.Name)
}()
path, node, err := p.getPathAndNodeForPV(pv)
if err != nil {
return err
}
if pv.Spec.PersistentVolumeReclaimPolicy != v1.PersistentVolumeReclaimRetain {
logrus.Infof("Deleting volume %v at %v:%v", pv.Name, node, path)
cleanupVGOperationArgs := []string{"delete", pv.Name}
if err := p.createHelperPod(ActionTypeDelete, cleanupVGOperationArgs, node); err != nil {
logrus.Infof("clean up volume %v failed: %v", pv.Name, err)
return err
}
return nil
}
logrus.Infof("Retained volume %v", pv.Name)
return nil
}
func (p *LocalLVMProvisioner) getPathAndNodeForPV(pv *v1.PersistentVolume) (path, node string, err error) {
defer func() {
err = errors.Wrapf(err, "failed to delete volume %v", pv.Name)
}()
hostPath := pv.Spec.PersistentVolumeSource.HostPath
if hostPath == nil {
return "", "", fmt.Errorf("no HostPath set")
}
path = filepath.Dir(hostPath.Path)
if path == "." || path == "/" {
return "", "", fmt.Errorf("invalid HostPath set")
}
nodeAffinity := pv.Spec.NodeAffinity
if nodeAffinity == nil {
return "", "", fmt.Errorf("no NodeAffinity set")
}
required := nodeAffinity.Required
if required == nil {
return "", "", fmt.Errorf("no NodeAffinity.Required set")
}
node = ""
for _, selectorTerm := range required.NodeSelectorTerms {
for _, expression := range selectorTerm.MatchExpressions {
if expression.Key == KeyNode && expression.Operator == v1.NodeSelectorOpIn {
if len(expression.Values) != 1 {
return "", "", fmt.Errorf("multiple values for the node affinity")
}
node = expression.Values[0]
break
}
}
if node != "" {
break
}
}
if node == "" {
return "", "", fmt.Errorf("cannot find affinited node")
}
return path, node, nil
}
func (p *LocalLVMProvisioner) createHelperPod(action ActionType, vgOperationArgs []string, node string) (err error) {
name := vgOperationArgs[1]
defer func() {
err = errors.Wrapf(err, "failed to %v volume %v", action, name)
}()
if name == "" || node == "" {
return fmt.Errorf("invalid empty name or node")
}
path, err := filepath.Abs(vgOperationArgs[1])
if err != nil {
return err
}
path = strings.TrimSuffix(path, "/")
if path == "" {
// it covers the `/` case
return fmt.Errorf("invalid path for %v", action)
}
hostPathType := v1.HostPathDirectoryOrCreate
privilegedTrue := true
uid, err := uuid.NewV4()
helperPod := &v1.Pod{
ObjectMeta: metav1.ObjectMeta{
Name: string(action) + "-" + name + "-" + uid.String()[:8],
Labels: map[string]string{
"app": "local-lvm-provisioner-helper",
},
},
Spec: v1.PodSpec{
RestartPolicy: v1.RestartPolicyNever,
NodeName: node,
HostPID: true,
Tolerations: []v1.Toleration{
{
Operator: v1.TolerationOpExists,
},
},
Affinity: &v1.Affinity{
PodAntiAffinity: &v1.PodAntiAffinity{
RequiredDuringSchedulingIgnoredDuringExecution: []v1.PodAffinityTerm{
{
LabelSelector: &metav1.LabelSelector{
MatchExpressions: []metav1.LabelSelectorRequirement{
{
Key: "app",
Operator: metav1.LabelSelectorOpIn,
Values: []string{"local-lvm-provisioner-helper"},
},
},
},
TopologyKey: "node",
},
},
},
},
Containers: []v1.Container{
{
Name: "local-lvm-" + string(action),
Image: p.helperImage,
Args: vgOperationArgs,
VolumeMounts: []v1.VolumeMount{
{
Name: "rootfs",
ReadOnly: false,
MountPath: "/rootfs",
},
},
SecurityContext: &v1.SecurityContext{
Privileged: &privilegedTrue,
},
},
},
Volumes: []v1.Volume{
{
Name: "rootfs",
VolumeSource: v1.VolumeSource{
HostPath: &v1.HostPathVolumeSource{
Path: "/",
Type: &hostPathType,
},
},
},
},
},
}
pod, err := p.kubeClient.CoreV1().Pods(p.namespace).Create(helperPod)
if err != nil {
return err
}
defer func() {
e := p.kubeClient.CoreV1().Pods(p.namespace).Delete(pod.Name, &metav1.DeleteOptions{})
if e != nil {
logrus.Errorf("unable to delete the helper pod: %v", e)
}
}()
completed := false
for i := 0; i < CmdTimeoutCounts; i++ {
if pod, err := p.kubeClient.CoreV1().Pods(p.namespace).Get(pod.Name, metav1.GetOptions{}); err != nil {
return err
} else if pod.Status.Phase == v1.PodSucceeded {
completed = true
break
}
time.Sleep(1 * time.Second)
}
if !completed {
return fmt.Errorf("create process timeout after %v seconds", CmdTimeoutCounts)
}
logrus.Infof("Volume %v has been %vd on %v:%v", name, action, node, path)
return nil
}
func loadConfigFile(configFile string) (cfgData *ConfigData, err error) {
defer func() {
err = errors.Wrapf(err, "fail to load config file %v", configFile)
}()
f, err := os.Open(configFile)
if err != nil {
return nil, err
}
defer f.Close()
var data ConfigData
if err := json.NewDecoder(f).Decode(&data); err != nil {
return nil, err
}
return &data, nil
}
func canonicalizeConfig(data *ConfigData) (cfg *Config, err error) {
defer func() {
err = errors.Wrapf(err, "config canonicalization failed")
}()
cfg = &Config{}
cfg.NodeVGMap = map[string]*NodeVGMap{}
for _, n := range data.NodeVGMap {
if cfg.NodeVGMap[n.Node] != nil {
return nil, fmt.Errorf("duplicate node %v", n.Node)
}
npMap := &NodeVGMap{VGs: map[string]struct{}{}}
cfg.NodeVGMap[n.Node] = npMap
if n.Path[0] != '/' {
return nil, fmt.Errorf("mount path must start with / for path %v on node %v", n.Path, n.Node)
}
path, err := filepath.Abs(n.Path)
if err != nil {
return nil, err
}
if path == "/" {
return nil, fmt.Errorf("cannot use root ('/') as mount path on node %v", n.Node)
}
npMap.Path = path
for _, vg := range n.VGs {
if _, ok := npMap.VGs[vg]; ok {
return nil, fmt.Errorf("duplicate volume group %v on node %v", vg, n.Node)
}
npMap.VGs[vg] = struct{}{}
}
}
return cfg, nil
}