forked from knative/eventing-contrib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
receive_adapter.go
129 lines (118 loc) · 3.28 KB
/
receive_adapter.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
/*
Copyright 2019 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.
*/
package resources
import (
"fmt"
v1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"knative.dev/eventing/pkg/utils"
"knative.dev/pkg/kmeta"
"knative.dev/eventing-contrib/couchdb/source/pkg/apis/sources/v1alpha1"
)
// ReceiveAdapterArgs are the arguments needed to create a CouchDB Receive Adapter.
// Every field is required.
type ReceiveAdapterArgs struct {
EventSource string
Image string
Source *v1alpha1.CouchDbSource
Labels map[string]string
SinkURI string
}
// MakeReceiveAdapter generates (but does not insert into K8s) the Receive Adapter Deployment for
// CouchDB sources.
func MakeReceiveAdapter(args *ReceiveAdapterArgs) *v1.Deployment {
replicas := int32(1)
return &v1.Deployment{
ObjectMeta: metav1.ObjectMeta{
Namespace: args.Source.Namespace,
Name: utils.GenerateFixedName(args.Source, fmt.Sprintf("couchdbsource-%s", args.Source.Name)),
Labels: args.Labels,
OwnerReferences: []metav1.OwnerReference{
*kmeta.NewControllerRef(args.Source),
},
},
Spec: v1.DeploymentSpec{
Selector: &metav1.LabelSelector{
MatchLabels: args.Labels,
},
Replicas: &replicas,
Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Labels: args.Labels,
},
Spec: corev1.PodSpec{
ServiceAccountName: args.Source.Spec.ServiceAccountName,
Containers: []corev1.Container{
{
Name: "receive-adapter",
Image: args.Image,
Env: makeEnv(args.EventSource, args.SinkURI, &args.Source.Spec),
VolumeMounts: []corev1.VolumeMount{
{
Name: "couchdb-credentials",
MountPath: "/etc/couchdb-credentials",
ReadOnly: true,
},
},
},
},
Volumes: []corev1.Volume{
{
Name: "couchdb-credentials",
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{
SecretName: args.Source.Spec.CouchDbCredentials.Name,
},
},
},
},
},
},
},
}
}
func makeEnv(eventSource, sinkURI string, spec *v1alpha1.CouchDbSourceSpec) []corev1.EnvVar {
return []corev1.EnvVar{{
Name: "SINK_URI",
Value: sinkURI,
}, {
Name: "EVENT_SOURCE",
Value: eventSource,
}, {
Name: "COUCHDB_CREDENTIALS",
Value: "/etc/couchdb-credentials",
}, {
Name: "COUCHDB_DATABASE",
Value: spec.Database,
}, {
Name: "COUCHDB_FEED",
Value: string(spec.Feed),
}, {
Name: "NAMESPACE",
ValueFrom: &corev1.EnvVarSource{
FieldRef: &corev1.ObjectFieldSelector{
FieldPath: "metadata.namespace",
},
},
}, {
Name: "METRICS_DOMAIN",
Value: "knative.dev/eventing",
}, {
Name: "K_METRICS_CONFIG",
Value: "",
}, {
Name: "K_LOGGING_CONFIG",
Value: "",
}}
}