You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code-samples/eventing/bookstore-sample-app/solution/node-server/config/200-broker.yaml
+1-5
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,4 @@ spec:
15
15
type: moderated-comment # This is the filter that will be applied to the event, only events with the ce-type moderated-comment will be processed
16
16
badwordfilter: good # This is the filter that will be applied to the event, only events with the ce-extension badwordfilter: good will be processed
17
17
subscriber:
18
-
ref:
19
-
apiVersion: v1
20
-
kind: Service
21
-
name: node-server-svc
22
-
uri: /insert # This is the path where the event will be sent to the subscriber, see /insert in node-server code: index.js
18
+
uri: http://node-server-svc.default.svc.cluster.local:8080/insert # This is the path where the event will be sent to the subscriber, see /insert in node-server code: index.js
Copy file name to clipboardExpand all lines: docs/bookstore/page-6/advanced-event-filtering.md
+1-5
Original file line number
Diff line number
Diff line change
@@ -36,11 +36,7 @@ Append the following Trigger configuration to the existing `node-server/config/2
36
36
type: moderated-comment # This is the filter that will be applied to the event, only events with the ce-type moderated-comment will be processed
37
37
badwordfilter: good # This is the filter that will be applied to the event, only events with the ce-extension badwordfilter: good will be processed
38
38
subscriber:
39
-
ref:
40
-
apiVersion: v1
41
-
kind: Service
42
-
name: node-server-svc
43
-
uri: /insert # This is the path where the event will be sent to the subscriber, see /insert in node-server code: index.js
39
+
uri: http://node-server-svc.default.svc.cluster.local:8080/insert # This is the path where the event will be sent to the subscriber, see /insert in node-server code: index.js
0 commit comments