This repository was archived by the owner on Sep 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcontroller.go
More file actions
227 lines (197 loc) · 6.28 KB
/
controller.go
File metadata and controls
227 lines (197 loc) · 6.28 KB
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
package controller
import (
"bytes"
"strings"
"time"
"github.com/golang/glog"
"github.com/pkg/errors"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/client/cache"
"k8s.io/kubernetes/pkg/client/record"
"k8s.io/kubernetes/pkg/client/restclient"
client "k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/controller/framework"
"k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/watch"
"sort"
oclient "github.com/openshift/origin/pkg/client"
deployapi "github.com/openshift/origin/pkg/deploy/api"
deployapiv1 "github.com/openshift/origin/pkg/deploy/api/v1"
"fmt"
"gopkg.in/v2/yaml"
"io"
"os/exec"
)
const (
updateOnChangeAnnotation = "configmap.fabric8.io/update-on-change"
)
type AnnotationsField map[string]string
type MetadataField struct {
Name string
Annotations AnnotationsField
}
type GenericAnnotatedObject struct {
Kind string
Metadata MetadataField
}
type ObjectList struct {
Items []GenericAnnotatedObject
}
type Controller struct {
client *client.Client
cmController *framework.Controller
cmLister cache.StoreToServiceLister
recorder record.EventRecorder
stopCh chan struct{}
}
func NewController(
kubeClient *client.Client,
ocClient *oclient.Client,
restClientConfig *restclient.Config,
encoder runtime.Encoder,
resyncPeriod time.Duration, namespace string) (*Controller, error) {
deployapi.AddToScheme(api.Scheme)
deployapiv1.AddToScheme(api.Scheme)
eventBroadcaster := record.NewBroadcaster()
eventBroadcaster.StartLogging(glog.Infof)
eventBroadcaster.StartRecordingToSink(kubeClient.Events(namespace))
c := Controller{
client: kubeClient,
stopCh: make(chan struct{}),
recorder: eventBroadcaster.NewRecorder(api.EventSource{
Component: "configmap-controller",
}),
}
c.cmLister.Store, c.cmController = framework.NewInformer(
&cache.ListWatch{
ListFunc: configMapListFunc(c.client, namespace),
WatchFunc: configMapWatchFunc(c.client, namespace),
},
&api.ConfigMap{},
resyncPeriod,
framework.ResourceEventHandlerFuncs{
AddFunc: func(obj interface{}) {
cm := obj.(*api.ConfigMap)
go rollingUpgradeObject(cm, "Deployment")
go rollingUpgradeObject(cm, "DaemonSet")
go rollingUpgradeObject(cm, "StatefulSet")
},
UpdateFunc: func(oldObj interface{}, newObj interface{}) {
oldM := oldObj.(*api.ConfigMap)
newCM := newObj.(*api.ConfigMap)
if oldM.ResourceVersion != newCM.ResourceVersion {
go rollingUpgradeObject(newCM, "Deployment")
go rollingUpgradeObject(newCM, "DaemonSet")
go rollingUpgradeObject(newCM, "StatefulSet")
}
},
},
)
return &c, nil
}
// Run starts the controller.
func (c *Controller) Run() {
glog.Infof("starting configmapcontroller")
go c.cmController.Run(c.stopCh)
<-c.stopCh
}
func (c *Controller) Stop() {
glog.Infof("stopping configmapcontroller")
close(c.stopCh)
}
func configMapListFunc(c *client.Client, ns string) func(api.ListOptions) (runtime.Object, error) {
return func(opts api.ListOptions) (runtime.Object, error) {
return c.ConfigMaps(ns).List(opts)
}
}
func configMapWatchFunc(c *client.Client, ns string) func(options api.ListOptions) (watch.Interface, error) {
return func(options api.ListOptions) (watch.Interface, error) {
return c.ConfigMaps(ns).Watch(options)
}
}
func findObjectsByKind(objectKind string) ObjectList {
kubectlbinary := "/kubectl"
cmd := exec.Command(kubectlbinary, "get", objectKind, "-o", "yaml")
stdout, err := cmd.StdoutPipe()
if err != nil {
glog.Errorf("Error retrieving objects by kind. Could not start pipe.")
var emptyObjectList ObjectList
return emptyObjectList
}
if err := cmd.Start(); err != nil {
glog.Errorf("Error retrieving objects by kind. Could not query.")
var emptyObjectList ObjectList
return emptyObjectList
}
buf := bytes.NewBuffer(nil)
io.Copy(buf, stdout)
var g ObjectList
yaml.Unmarshal(buf.Bytes(), &g)
return g
}
func rollingUpgradeObject(cm *api.ConfigMap, objectKind string) error {
objects := findObjectsByKind(objectKind)
configMapName := cm.Name
configMapLabel := "FABRIC8_" + convertToEnvVarName(configMapName) + "_CONFIGMAP"
for _, o := range objects.Items {
annotationValue := o.Metadata.Annotations[updateOnChangeAnnotation]
if annotationValue != "" {
values := strings.Split(annotationValue, ",")
for _, value := range values {
if value == configMapName {
go RunKubectlPatch(objectKind, o.Metadata.Name, configMapLabel, cm.ObjectMeta.ResourceVersion)
}
}
}
}
return nil
}
// lets convert the configmap into a unique token based on the data values
func convertConfigMapToToken(cm *api.ConfigMap) string {
values := []string{}
for k, v := range cm.Data {
values = append(values, k+"="+v)
}
sort.Strings(values)
text := strings.Join(values, ";")
// we could zip and base64 encode
// but for now we could leave this easy to read so that its easier to diagnose when & why things changed
return text
}
// convertToEnvVarName converts the given text into a usable env var
// removing any special chars with '_'
func convertToEnvVarName(text string) string {
var buffer bytes.Buffer
lower := strings.ToUpper(text)
lastCharValid := false
for i := 0; i < len(lower); i++ {
ch := lower[i]
if (ch >= 'A' && ch <= 'Z') || (ch >= '0' && ch <= '9') {
buffer.WriteString(string(ch))
lastCharValid = true
} else {
if lastCharValid {
buffer.WriteString("_")
}
lastCharValid = false
}
}
return buffer.String()
}
func RunKubectlPatch(objectKind string, objectId string, labelName string, labelValue string) {
yamlPatch := fmt.Sprintf("spec:\n template:\n metadata:\n labels:\n %s: '%s'", labelName, labelValue)
glog.Infof("About to run patch: %s %s with %s", objectKind, objectId, yamlPatch)
attemptDelay := 30
for attempt := 1; attempt < 3; attempt++ {
err := exec.Command("/kubectl", "patch", objectKind, objectId, "--patch", yamlPatch).Run()
if err == nil {
glog.Infof("Successfully sent patch request for %s %s", objectKind, objectId)
return
}
glog.Errorf("error running kubectl attempt %d. Waiting %d seconds", attempt, attemptDelay)
fmt.Printf("%s", errors.Wrap(err, "error patching element"))
time.Sleep(time.Duration(attemptDelay) * time.Second)
attemptDelay = attemptDelay * 2
}
glog.Errorf("Could not execute patch %s on object %s of kind %s", yamlPatch, objectId, objectKind)
}