-
Notifications
You must be signed in to change notification settings - Fork 53
/
metadata.go
56 lines (46 loc) · 1.29 KB
/
metadata.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
package core
type Capability[T any] interface {
Comparator[T]
}
type MetadataAccessor[T Capability[T]] interface {
GetCapabilities() []T
SetCapabilities(capabilities []T)
GetLabels() map[string]string
SetLabels(labels map[string]string)
}
func (t *BootstrapToken) GetCapabilities() []*TokenCapability {
return t.GetMetadata().GetCapabilities()
}
func (c *Cluster) GetCapabilities() []*ClusterCapability {
return c.GetMetadata().GetCapabilities()
}
func (t *BootstrapToken) GetLabels() map[string]string {
return t.GetMetadata().GetLabels()
}
func (c *Cluster) GetLabels() map[string]string {
return c.GetMetadata().GetLabels()
}
func (t *BootstrapToken) SetCapabilities(capabilities []*TokenCapability) {
if t.Metadata == nil {
t.Metadata = &BootstrapTokenMetadata{}
}
t.Metadata.Capabilities = capabilities
}
func (c *Cluster) SetCapabilities(capabilities []*ClusterCapability) {
if c.Metadata == nil {
c.Metadata = &ClusterMetadata{}
}
c.Metadata.Capabilities = capabilities
}
func (t *BootstrapToken) SetLabels(labels map[string]string) {
if t.Metadata == nil {
t.Metadata = &BootstrapTokenMetadata{}
}
t.Metadata.Labels = labels
}
func (c *Cluster) SetLabels(labels map[string]string) {
if c.Metadata == nil {
c.Metadata = &ClusterMetadata{}
}
c.Metadata.Labels = labels
}