generated from knative-extensions/sample-controller
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsources.yaml
87 lines (78 loc) · 1.55 KB
/
sources.yaml
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
# apiVersion: sources.knative.dev/v1alpha1
# kind: SinkBinding
# metadata:
# name: bind-debug
# spec:
# subject:
# apiVersion: apps/v1
# kind: Deployment
# name: debug
# sink:
# ref:
# apiVersion: serving.knative.dev/v1
# kind: Service
# name: sockeye
# ---
# apiVersion: v1
# kind: ServiceAccount
# metadata:
# name: events-sa
# namespace: default
# ---
# apiVersion: rbac.authorization.k8s.io/v1
# kind: ClusterRole
# metadata:
# name: event-watcher
# rules:
# - apiGroups:
# - ""
# resources:
# - events
# verbs:
# - get
# - list
# - watch
# ---
# apiVersion: rbac.authorization.k8s.io/v1
# kind: ClusterRoleBinding
# metadata:
# name: k8s-ra-event-watcher
# roleRef:
# apiGroup: rbac.authorization.k8s.io
# kind: ClusterRole
# name: event-watcher
# subjects:
# - kind: ServiceAccount
# name: events-sa
# namespace: default
# ---
# apiVersion: sources.knative.dev/v1alpha1
# kind: ApiServerSource
# metadata:
# name: testevents
# namespace: default
# spec:
# serviceAccountName: events-sa
# mode: Resource
# resources:
# - apiVersion: v1
# kind: Event
# sink:
# ref:
# apiVersion: serving.knative.dev/v1
# kind: Service
# name: sockeye
# ---
# apiVersion: sources.knative.dev/v1alpha1
# kind: PingSource
# metadata:
# name: ping-test
# namespace: default
# spec:
# schedule: "* * * * *"
# data: "knock knock"
# sink:
# ref:
# apiVersion: serving.knative.dev/v1
# kind: Service
# name: sockeye