-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
injection.go
97 lines (79 loc) · 2.9 KB
/
injection.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
/*
Copyright 2021 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package taskrunmetrics
import (
"context"
taskruninformer "github.com/tektoncd/pipeline/pkg/client/injection/informers/pipeline/v1/taskrun"
listers "github.com/tektoncd/pipeline/pkg/client/listers/pipeline/v1"
"k8s.io/client-go/rest"
"knative.dev/pkg/controller"
"knative.dev/pkg/injection"
"knative.dev/pkg/logging"
)
func init() {
injection.Default.RegisterClient(func(ctx context.Context, _ *rest.Config) context.Context { return WithClient(ctx) })
injection.Default.RegisterInformer(WithInformer)
injection.Dynamic.RegisterDynamicClient(WithClient)
injection.Dynamic.RegisterDynamicInformer(func(ctx context.Context) context.Context {
ctx, _ = WithInformer(ctx)
return ctx
})
}
// RecorderKey is used for associating the Recorder inside the context.Context.
type RecorderKey struct{}
// WithClient adds a metrics recorder to the given context
func WithClient(ctx context.Context) context.Context {
rec, err := NewRecorder(ctx)
if err != nil {
logging.FromContext(ctx).Errorf("Failed to create taskrun metrics recorder %v", err)
}
return context.WithValue(ctx, RecorderKey{}, rec)
}
// Get extracts the taskrunmetrics.Recorder from the context.
func Get(ctx context.Context) *Recorder {
untyped := ctx.Value(RecorderKey{})
if untyped == nil {
logging.FromContext(ctx).Panic("Unable to fetch *taskrunmetrics.Recorder from context.")
}
return untyped.(*Recorder)
}
// InformerKey is used for associating the Informer inside the context.Context.
type InformerKey struct{}
// WithInformer returns the given context, and a configured informer
func WithInformer(ctx context.Context) (context.Context, controller.Informer) {
return ctx, &recorderInformer{
ctx: ctx,
metrics: Get(ctx),
lister: taskruninformer.Get(ctx).Lister(),
}
}
type recorderInformer struct {
ctx context.Context
metrics *Recorder
lister listers.TaskRunLister
}
var _ controller.Informer = (*recorderInformer)(nil)
// Run starts the recorder informer in a goroutine
func (ri *recorderInformer) Run(stopCh <-chan struct{}) {
// Turn the stopCh into a context for reporting metrics.
ctx, cancel := context.WithCancel(ri.ctx)
go func() {
<-stopCh
cancel()
}()
go ri.metrics.ReportRunningTaskRuns(ctx, ri.lister)
}
// HasSynced returns whether the informer has synced, which in this case will always be true.
func (ri *recorderInformer) HasSynced() bool {
return true
}