forked from sbawaska/eventing-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reconciler.go
66 lines (50 loc) · 2.41 KB
/
reconciler.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
/*
Copyright 2020 The Knative 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.
*/
// Code generated by injection-gen. DO NOT EDIT.
package prometheussource
import (
context "context"
v1 "k8s.io/api/core/v1"
v1alpha1 "knative.dev/eventing-contrib/prometheus/pkg/apis/sources/v1alpha1"
prometheussource "knative.dev/eventing-contrib/prometheus/pkg/client/injection/reconciler/sources/v1alpha1/prometheussource"
reconciler "knative.dev/pkg/reconciler"
)
// TODO: PLEASE COPY AND MODIFY THIS FILE AS A STARTING POINT
// newReconciledNormal makes a new reconciler event with event type Normal, and
// reason PrometheusSourceReconciled.
func newReconciledNormal(namespace, name string) reconciler.Event {
return reconciler.NewEvent(v1.EventTypeNormal, "PrometheusSourceReconciled", "PrometheusSource reconciled: \"%s/%s\"", namespace, name)
}
// Reconciler implements controller.Reconciler for PrometheusSource resources.
type Reconciler struct {
// TODO: add additional requirements here.
}
// Check that our Reconciler implements Interface
var _ prometheussource.Interface = (*Reconciler)(nil)
// Optionally check that our Reconciler implements Finalizer
//var _ prometheussource.Finalizer = (*Reconciler)(nil)
// ReconcileKind implements Interface.ReconcileKind.
func (r *Reconciler) ReconcileKind(ctx context.Context, o *v1alpha1.PrometheusSource) reconciler.Event {
// TODO: use this if the resource implements InitializeConditions.
// o.Status.InitializeConditions()
// TODO: add custom reconciliation logic here.
// TODO: use this if the object has .status.ObservedGeneration.
// o.Status.ObservedGeneration = o.Generation
return newReconciledNormal(o.Namespace, o.Name)
}
// Optionally, use FinalizeKind to add finalizers. FinalizeKind will be called
// when the resource is deleted.
//func (r *Reconciler) FinalizeKind(ctx context.Context, o *v1alpha1.PrometheusSource) reconciler.Event {
// // TODO: add custom finalization logic here.
// return nil
//}