This repository has been archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
empty_dir_quota.go
92 lines (76 loc) · 2.84 KB
/
empty_dir_quota.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
package emptydir
import (
"k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
"k8s.io/kubernetes/pkg/volume"
)
var _ volume.VolumePlugin = &EmptyDirQuotaPlugin{}
var _ volume.Mounter = &emptyDirQuotaMounter{}
// EmptyDirQuotaPlugin is a simple wrapper for the k8s empty dir plugin mounter.
type EmptyDirQuotaPlugin struct {
// the actual k8s emptyDir volume plugin we will pass method calls to.
// TODO: do we need to implement unmount
volume.VolumePlugin
// The default quota to apply to each node:
Quota resource.Quantity
// QuotaApplicator is passed to actual volume mounters so they can apply
// quota for the supported filesystem.
QuotaApplicator QuotaApplicator
}
func (plugin *EmptyDirQuotaPlugin) NewMounter(spec *volume.Spec, pod *v1.Pod, opts volume.VolumeOptions) (volume.Mounter, error) {
volMounter, err := plugin.VolumePlugin.NewMounter(spec, pod, opts)
if err != nil {
return volMounter, err
}
// Because we cannot access several fields on the k8s emptyDir struct, and
// we do not wish to modify k8s code for this, we have to grab a reference
// to them ourselves.
// This logic is the same as k8s.io/kubernetes/pkg/volume/empty_dir:
medium := v1.StorageMediumDefault
if spec.Volume.EmptyDir != nil { // Support a non-specified source as EmptyDir.
medium = spec.Volume.EmptyDir.Medium
}
// Wrap the mounter object with our own to add quota functionality:
wrapperEmptyDir := &emptyDirQuotaMounter{
wrapped: volMounter,
pod: pod,
medium: medium,
quota: plugin.Quota,
quotaApplicator: plugin.QuotaApplicator,
}
return wrapperEmptyDir, err
}
// emptyDirQuotaMounter is a wrapper plugin mounter for the k8s empty dir mounter itself.
// This plugin just extends and adds the functionality to apply a
// quota for the pods FSGroup on an XFS filesystem.
type emptyDirQuotaMounter struct {
wrapped volume.Mounter
pod *v1.Pod
medium v1.StorageMedium
quota resource.Quantity
quotaApplicator QuotaApplicator
}
func (edq *emptyDirQuotaMounter) CanMount() error {
return edq.wrapped.CanMount()
}
// Must implement SetUp as well, otherwise the internal Mounter.SetUp calls its
// own SetUpAt method, not the one we need.
func (edq *emptyDirQuotaMounter) SetUp(fsGroup *int64) error {
return edq.SetUpAt(edq.GetPath(), fsGroup)
}
func (edq *emptyDirQuotaMounter) SetUpAt(dir string, fsGroup *int64) error {
err := edq.wrapped.SetUpAt(dir, fsGroup)
if err == nil {
err = edq.quotaApplicator.Apply(dir, edq.medium, edq.pod, fsGroup, edq.quota)
}
return err
}
func (edq *emptyDirQuotaMounter) GetAttributes() volume.Attributes {
return edq.wrapped.GetAttributes()
}
func (edq *emptyDirQuotaMounter) GetMetrics() (*volume.Metrics, error) {
return edq.wrapped.GetMetrics()
}
func (edq *emptyDirQuotaMounter) GetPath() string {
return edq.wrapped.GetPath()
}