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: modules/serverless-config-replicas.adoc
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,3 @@
1
-
// Module is included in the following assemblies:
2
-
//
3
-
// serverless/serverless-HA.adoc
4
-
5
1
[id="serverless-config-replicas_{context}"]
6
2
= Configuring high availability replicas on {ServerlessProductName}
7
3
@@ -11,6 +7,7 @@ You modify the number of replicas that are created per controller by changing th
11
7
// This field also specifies the minimum number of _activators_ if you are using the horizontal pod autoscaler (HPA). For more information about HPA, see
12
8
13
9
.Prerequisites
10
+
14
11
* An {product-title} account with cluster administrator access.
15
12
* Installed the {ServerlessOperatorName} and Knative Serving.
= Connect an event source to a sink using the Developer perspective
8
3
9
4
You can create multiple event source types in {product-title} that can be connected to sinks.
10
5
11
-
A sink is an addressable resource that can receive incoming events from other Knative Eventing resources. Knative services, channels, and brokers are all examples of sinks.
12
-
// Add functions as services to the list for tech preview
13
-
14
6
.Prerequisites
15
7
16
8
To connect an event source to a sink using the *Developer* perspective, ensure that:
You can connect a trigger to a sink, so that events from a broker are filtered before they are sent to the sink. A sink that is connected to a trigger is configured as a `subscriber` in the `Trigger` resource spec.
5
+
6
+
.Example of a trigger connected to a Kafka sink
7
+
[source,yaml]
8
+
----
9
+
apiVersion: eventing.knative.dev/v1
10
+
kind: Trigger
11
+
metadata:
12
+
name: <trigger_name> <1>
13
+
spec:
14
+
...
15
+
subscriber:
16
+
ref:
17
+
apiVersion: eventing.knative.dev/v1alpha1
18
+
kind: KafkaSink
19
+
name: <kafka_sink_name> <2>
20
+
----
21
+
<1> The name of the trigger being connected to the sink.
Copy file name to clipboardExpand all lines: modules/serverless-installing-cli-linux-rpm.adoc
+1-14Lines changed: 1 addition & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,51 +1,38 @@
1
-
// Module is included in the following assemblies:
2
-
//
3
-
// serverless/knative-client.adoc
4
-
5
1
[id="installing-cli-linux-rpm_{context}"]
6
2
= Installing the Knative CLI for Linux using an RPM
7
3
8
4
For {op-system-base-full}, you can install the Knative CLI (`kn`) as an RPM if you have an active {product-title} subscription on your Red Hat account.
0 commit comments