-
Notifications
You must be signed in to change notification settings - Fork 0
/
clusterlogging.go
357 lines (295 loc) · 12.6 KB
/
clusterlogging.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
package logging
import (
"context"
"fmt"
"reflect"
"strings"
"time"
"github.com/sirupsen/logrus"
"github.com/pkg/errors"
"github.com/rancher/norman/controller"
"github.com/rancher/types/apis/apps/v1beta2"
"github.com/rancher/types/apis/core/v1"
"github.com/rancher/types/apis/management.cattle.io/v3"
rbacv1 "github.com/rancher/types/apis/rbac.authorization.k8s.io/v1"
"github.com/rancher/types/config"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/util/flowcontrol"
loggingconfig "github.com/rancher/rancher/pkg/controllers/user/logging/config"
"github.com/rancher/rancher/pkg/controllers/user/logging/generator"
"github.com/rancher/rancher/pkg/controllers/user/logging/utils"
"github.com/rancher/rancher/pkg/ticker"
)
const (
watcherSyncInterval = 1 * time.Minute
retryBackoffInterval = 10 * time.Second
retryTimeout = 5 * time.Minute
)
// ClusterLoggingSyncer listens for clusterLogging CRD in management API
// and update the changes to configmap, deploy fluentd, embedded elasticsearch, embedded kibana
type ClusterLoggingSyncer struct {
backoff *flowcontrol.Backoff
clusterName string
clusterLoggingController v3.ClusterLoggingController
clusterLoggings v3.ClusterLoggingInterface
clusterLoggingLister v3.ClusterLoggingLister
clusterRoleBindings rbacv1.ClusterRoleBindingInterface
clusterLister v3.ClusterLister
configmaps v1.ConfigMapInterface
daemonsets v1beta2.DaemonSetInterface
deployments v1beta2.DeploymentInterface
podLister v1.PodLister
k8sNodeLister v1.NodeLister
namespaces v1.NamespaceInterface
nodeLister v3.NodeLister
projectLoggingLister v3.ProjectLoggingLister
roles rbacv1.RoleInterface
rolebindings rbacv1.RoleBindingInterface
secrets v1.SecretInterface
services v1.ServiceInterface
serviceLister v1.ServiceLister
serviceAccounts v1.ServiceAccountInterface
}
type endpointWatcher struct {
clusterName string
clusterLoggings v3.ClusterLoggingInterface
clusterLoggingLister v3.ClusterLoggingLister
clusterLister v3.ClusterLister
deployments v1beta2.DeploymentInterface
podLister v1.PodLister
k8sNodeLister v1.NodeLister
nodeLister v3.NodeLister
serviceLister v1.ServiceLister
}
func registerClusterLogging(ctx context.Context, cluster *config.UserContext) {
clusterloggingClient := cluster.Management.Management.ClusterLoggings(cluster.ClusterName)
syncer := &ClusterLoggingSyncer{
backoff: flowcontrol.NewBackOff(retryBackoffInterval, retryTimeout),
clusterLoggingController: cluster.Management.Management.ClusterLoggings(cluster.ClusterName).Controller(),
clusterName: cluster.ClusterName,
clusterLoggings: clusterloggingClient,
clusterLoggingLister: clusterloggingClient.Controller().Lister(),
clusterRoleBindings: cluster.RBAC.ClusterRoleBindings(loggingconfig.LoggingNamespace),
clusterLister: cluster.Management.Management.Clusters("").Controller().Lister(),
configmaps: cluster.Core.ConfigMaps(loggingconfig.LoggingNamespace),
daemonsets: cluster.Apps.DaemonSets(loggingconfig.LoggingNamespace),
deployments: cluster.Apps.Deployments(loggingconfig.LoggingNamespace),
k8sNodeLister: cluster.Core.Nodes("").Controller().Lister(),
namespaces: cluster.Core.Namespaces(""),
nodeLister: cluster.Management.Management.Nodes("").Controller().Lister(),
podLister: cluster.Core.Pods("").Controller().Lister(),
projectLoggingLister: cluster.Management.Management.ProjectLoggings("").Controller().Lister(),
roles: cluster.RBAC.Roles(loggingconfig.LoggingNamespace),
rolebindings: cluster.RBAC.RoleBindings(loggingconfig.LoggingNamespace),
secrets: cluster.Core.Secrets(loggingconfig.LoggingNamespace),
services: cluster.Core.Services(loggingconfig.LoggingNamespace),
serviceLister: cluster.Core.Services("").Controller().Lister(),
serviceAccounts: cluster.Core.ServiceAccounts(loggingconfig.LoggingNamespace),
}
endpointWatcher := &endpointWatcher{
clusterName: cluster.ClusterName,
clusterLoggings: clusterloggingClient,
clusterLoggingLister: clusterloggingClient.Controller().Lister(),
k8sNodeLister: cluster.Core.Nodes("").Controller().Lister(),
nodeLister: cluster.Management.Management.Nodes("").Controller().Lister(),
podLister: cluster.Core.Pods("").Controller().Lister(),
serviceLister: cluster.Core.Services("").Controller().Lister(),
}
clusterloggingClient.AddClusterScopedHandler("cluster-logging-controller", cluster.ClusterName, syncer.Sync)
go endpointWatcher.watch(ctx, watcherSyncInterval)
}
func (e *endpointWatcher) watch(ctx context.Context, interval time.Duration) {
for range ticker.Context(ctx, interval) {
if err := e.checkTarget(); err != nil {
logrus.Error(err)
}
}
}
func (c *ClusterLoggingSyncer) Sync(key string, obj *v3.ClusterLogging) error {
if obj == nil || obj.DeletionTimestamp != nil || utils.GetClusterTarget(obj.Spec) == "none" {
isAllDisable, err := utils.CleanResource(c.namespaces, c.clusterLoggingLister, c.projectLoggingLister, obj, nil)
if err != nil {
return err
}
if !isAllDisable {
if err := utils.UnsetConfigMap(c.configmaps, loggingconfig.ClusterLoggingName, "cluster"); err != nil {
return err
}
if err := utils.UnsetSecret(c.secrets, loggingconfig.SSLSecretName, getClusterSecretPrefix(c.clusterName)); err != nil {
return err
}
}
if obj != nil && !reflect.DeepEqual(obj.Spec, obj.Status.AppliedSpec) {
return unsetClusterLogging(obj, c.clusterLoggings)
}
return nil
}
if ok, delay := c.backoffFailure(obj); ok {
return &controller.ForgetError{Err: fmt.Errorf("backing off failure, delay: %v", delay)}
}
return c.doSync(obj)
}
func (c *ClusterLoggingSyncer) doSync(obj *v3.ClusterLogging) error {
_, err := v3.LoggingConditionProvisioned.Do(obj, func() (runtime.Object, error) {
return obj, provision(c.namespaces, c.configmaps, c.serviceAccounts, c.clusterRoleBindings, c.daemonsets, c.clusterLister, c.secrets, c.clusterName, obj.Spec.DockerRootDir)
})
if err != nil {
return err
}
if reflect.DeepEqual(obj.Spec, obj.Status.AppliedSpec) {
return nil
}
return c.update(obj)
}
func (c *ClusterLoggingSyncer) update(obj *v3.ClusterLogging) (err error) {
v3.LoggingConditionUpdated.Unknown(obj)
if utils.GetClusterTarget(obj.Spec) != "embedded" {
err = utils.RemoveEmbeddedTarget(c.deployments, c.serviceAccounts, c.services, c.roles, c.rolebindings)
c.updateBackoff(obj.Name, "", err)
updatedObj, err := setClusterLoggingErrMsg(obj, "", err)
_, updatedErr := c.clusterLoggings.Update(updatedObj)
if mergedErr := mergedErrors(updatedErr, err); mergedErr != nil {
return mergedErr
}
if err := utils.UpdateSSLAuthentication(getClusterSecretPrefix(c.clusterName), obj.Spec.ElasticsearchConfig, obj.Spec.SplunkConfig, obj.Spec.KafkaConfig, c.secrets); err != nil {
return err
}
return c.createOrUpdateClusterConfigMap()
}
if err = utils.CreateOrUpdateEmbeddedTarget(c.deployments, c.serviceAccounts, c.services, c.roles, c.rolebindings, loggingconfig.LoggingNamespace, obj); err != nil {
return err
}
waitingMsg, err := utils.SetEmbeddedEndpoint(c.podLister, c.serviceLister, c.nodeLister, c.k8sNodeLister, obj, c.clusterName)
c.updateBackoff(obj.Name, waitingMsg, err)
updatedObj, err := setClusterLoggingErrMsg(obj, waitingMsg, err)
_, updatedErr := c.clusterLoggings.Update(updatedObj)
if mergedErr := mergedErrors(updatedErr, err); mergedErr != nil {
return mergedErr
}
return c.createOrUpdateClusterConfigMap()
}
func (c *ClusterLoggingSyncer) updateBackoff(name, waitingMsg string, err error) {
if err != nil || waitingMsg != "" {
c.backoff.Next(name, time.Now())
return
}
c.backoff.DeleteEntry(name)
}
func (c *ClusterLoggingSyncer) createOrUpdateClusterConfigMap() error {
clusterLoggingList, err := c.clusterLoggings.Controller().Lister().List("", labels.NewSelector())
if err != nil {
return errors.Wrap(err, "list cluster logging failed")
}
if len(clusterLoggingList) == 0 {
return errors.New("no cluster logging configured")
}
conf := make(map[string]interface{})
wpClusterlogging, err := utils.ToWrapClusterLogging(clusterLoggingList[0].Spec)
if err != nil {
return errors.Wrap(err, "to wraper cluster logging failed")
}
conf["clusterTarget"] = wpClusterlogging
conf["clusterName"] = c.clusterName
err = generator.GenerateConfigFile(loggingconfig.ClusterConfigPath, generator.ClusterTemplate, "cluster", conf)
if err != nil {
return errors.Wrap(err, "generate cluster config file failed")
}
return utils.UpdateConfigMap(loggingconfig.ClusterConfigPath, loggingconfig.ClusterLoggingName, "cluster", c.configmaps)
}
func (c *ClusterLoggingSyncer) backoffFailure(cl *v3.ClusterLogging) (bool, time.Duration) {
if cl.Status.FailedSpec == nil {
return false, 0
}
if !reflect.DeepEqual(*cl.Status.FailedSpec, cl.Spec) {
return false, 0
}
if c.backoff.IsInBackOffSinceUpdate(cl.Name, time.Now()) {
go func() {
time.Sleep(c.backoff.Get(cl.Name))
c.clusterLoggings.Controller().Enqueue(c.clusterName, cl.Name)
}()
return true, c.backoff.Get(cl.Name)
}
return false, 0
}
func (e *endpointWatcher) checkTarget() error {
cls, err := e.clusterLoggingLister.List(e.clusterName, labels.NewSelector())
if err != nil {
return errors.Wrapf(err, "list clusterlogging fail in endpoint watcher")
}
if len(cls) == 0 {
return nil
}
obj := cls[0]
var waitingMsg string
if obj.Spec.EmbeddedConfig != nil {
waitingMsg, err = utils.SetEmbeddedEndpoint(e.podLister, e.serviceLister, e.nodeLister, e.k8sNodeLister, obj, e.clusterName)
} else {
_, _, err = utils.GetWrapConfig(obj.Spec.ElasticsearchConfig, obj.Spec.SplunkConfig, obj.Spec.SyslogConfig, obj.Spec.KafkaConfig, nil)
}
updatedObj, err := setClusterLoggingErrMsg(obj, waitingMsg, err)
_, updateErr := e.clusterLoggings.Update(updatedObj)
mergedErr := mergedErrors(updateErr, err)
return errors.Wrapf(mergedErr, "set clusterlogging fail in watch endpoint")
}
func provision(namespaces v1.NamespaceInterface, configmaps v1.ConfigMapInterface, serviceAccounts v1.ServiceAccountInterface, clusterRoleBindings rbacv1.ClusterRoleBindingInterface, daemonsets v1beta2.DaemonSetInterface, clusterLister v3.ClusterLister, secrets v1.SecretInterface, clusterName, dockerRootDir string) error {
if err := utils.IniteNamespace(namespaces); err != nil {
return err
}
if err := utils.InitConfigMap(configmaps); err != nil {
return err
}
if err := utils.InitSecret(secrets); err != nil {
return err
}
if err := utils.CreateLogAggregator(daemonsets, serviceAccounts, clusterRoleBindings, clusterLister, clusterName, loggingconfig.LoggingNamespace); err != nil {
return err
}
return utils.CreateFluentd(daemonsets, serviceAccounts, clusterRoleBindings, loggingconfig.LoggingNamespace, dockerRootDir)
}
func unsetClusterLogging(obj *v3.ClusterLogging, clusterLoggings v3.ClusterLoggingInterface) error {
updatedObj := obj.DeepCopy()
updatedObj.Status.AppliedSpec = obj.Spec
updatedObj.Status.FailedSpec = nil
v3.LoggingConditionProvisioned.False(updatedObj)
v3.LoggingConditionProvisioned.Message(updatedObj, "")
v3.LoggingConditionUpdated.False(updatedObj)
v3.LoggingConditionUpdated.Message(updatedObj, "")
_, err := clusterLoggings.Update(updatedObj)
return err
}
func setClusterLoggingErrMsg(obj *v3.ClusterLogging, waitingMsg string, err error) (*v3.ClusterLogging, error) {
updatedObj := obj.DeepCopy()
if err != nil {
updatedObj.Status.FailedSpec = &obj.Spec
v3.LoggingConditionUpdated.False(updatedObj)
v3.LoggingConditionUpdated.Message(updatedObj, err.Error())
return updatedObj, err
}
if waitingMsg != "" {
updatedObj.Status.FailedSpec = &obj.Spec
v3.LoggingConditionUpdated.Message(updatedObj, waitingMsg)
return updatedObj, fmt.Errorf(waitingMsg)
}
updatedObj.Status.FailedSpec = nil
updatedObj.Status.AppliedSpec = obj.Spec
v3.LoggingConditionUpdated.True(updatedObj)
v3.LoggingConditionUpdated.Message(updatedObj, "")
return updatedObj, err
}
func mergedErrors(errs ...error) error {
var errMsgs []string
for _, v := range errs {
if v != nil {
errMsgs = append(errMsgs, v.Error())
}
}
if len(errMsgs) == 0 {
return nil
}
return errors.New(strings.Join(errMsgs, ","))
}
func getClusterSecretPrefix(clusterName string) string {
return "cluster_" + clusterName
}