forked from PierreVincent/k8s-grafana-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigMapLookup.go
83 lines (71 loc) · 2 KB
/
configMapLookup.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
package main
import (
"fmt"
"log"
kapi "k8s.io/kubernetes/pkg/api"
kclient "k8s.io/kubernetes/pkg/client/unversioned"
kselector "k8s.io/kubernetes/pkg/fields"
klabels "k8s.io/kubernetes/pkg/labels"
"crypto/sha1"
)
type ConfigMapLookup struct {
Annotation string
hashes map[string]string
}
func NewConfigMapLookup(annotation string) *ConfigMapLookup {
return &ConfigMapLookup{
Annotation: annotation,
hashes: make(map[string]string),
}
}
type ConfigMapEntry struct {
Namespace string
Name string
Key string
Value string
}
func (entry *ConfigMapEntry) identifier() string {
return fmt.Sprintf("%s-%s-%s", entry.Namespace, entry.Name, entry.Key)
}
func (lookup *ConfigMapLookup) FindNewEntries(kubeClient *kclient.Client) []ConfigMapEntry {
allEntries := lookup.gatherEntries(kubeClient)
newEntries := []ConfigMapEntry{}
for _, entry := range allEntries {
hash := computeSha1(entry.Value)
entryIdentifier := entry.identifier()
if lookup.hashes[entryIdentifier] != hash {
newEntries = append(newEntries, entry)
lookup.hashes[entryIdentifier] = hash
}
}
return newEntries
}
func (lookup *ConfigMapLookup) gatherEntries(kubeClient *kclient.Client) []ConfigMapEntry {
si := kubeClient.ConfigMaps(kapi.NamespaceAll)
mapList, err := si.List(kapi.ListOptions{
LabelSelector: klabels.Everything(),
FieldSelector: kselector.Everything()})
if err != nil {
log.Printf("Unable to list configmaps: %s", err)
}
entryList := []ConfigMapEntry{}
for _, cm := range mapList.Items {
anno := cm.GetObjectMeta().GetAnnotations()
name := cm.GetObjectMeta().GetName()
namespace := cm.GetObjectMeta().GetNamespace()
for k := range anno {
if k == lookup.Annotation {
for cmk, cmv := range cm.Data {
entry := ConfigMapEntry{namespace, name, cmk, cmv }
entryList = append(entryList, entry)
}
}
}
}
return entryList
}
func computeSha1(payload string) string {
hash := sha1.New()
hash.Write([]byte(payload))
return fmt.Sprintf("%x", hash.Sum(nil))
}