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
The public address is surfaced in the `EXTERNAL-IP` field.
39
-
In this case, it would be `a83e86291bcdd11e993af02b7a65e514-33544245.us-east-1.elb.amazonaws.com`.
38
+
The public address is surfaced in the `EXTERNAL-IP` field, and in this case is `a83e86291bcdd11e993af02b7a65e514-33544245.us-east-1.elb.amazonaws.com`.
40
39
41
40
. Manually set the host header of your HTTP request to the application’s host, but direct the request itself against the public address of the ingress gateway.
42
41
+
43
-
The following example uses the information obtained from the steps in _Verifying your serverless application deployment_:
You can also filter events using multiple attributes. The following example shows how to filter events using the type, source, and extension attributes.
= Configuring concurrent requests for Knative Serving autoscaling
7
7
8
-
You can specify the number of concurrent requests that should be handled by each instance of an application (revision container) by adding the `target` annotation or the `containerConcurrency` field in the revision template.
8
+
You can specify the number of concurrent requests that should be handled by each instance of a revision container, or application, by adding the `target` annotation or the `containerConcurrency` field in the revision template.
9
9
10
-
Here is an example of `target` being used in a revision template:
10
+
.Example revision template YAML using target annotation
11
11
12
12
[source,yaml]
13
13
----
@@ -25,7 +25,8 @@ spec:
25
25
- image: myimage
26
26
----
27
27
28
-
Here is an example of `containerConcurrency` being used in a revision template:
28
+
.Example revision template YAML using containerConcurrency annotation
29
+
29
30
[source,yaml]
30
31
----
31
32
apiVersion: serving.knative.dev/v1
@@ -57,7 +58,7 @@ If the `containerConcurrency` value is less than the `target` value, the `target
57
58
58
59
The default target for the number of concurrent requests is `100`, but you can override this value by adding or modifying the `autoscaling.knative.dev/target` annotation value in the revision template.
59
60
60
-
Here is an example of how this annotation is used in the revision template to set the target to `50`.
61
+
Here is an example of how this annotation is used in the revision template to set the target to `50`:
Copy file name to clipboardExpand all lines: modules/serverless-about-collecting-data.adoc
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,14 @@
6
6
= About collecting {ServerlessProductName} data
7
7
8
8
You can use the `oc adm must-gather` CLI command to collect information about your cluster, including features and objects associated with {ServerlessProductName}.
9
+
To collect {ServerlessProductName} data with `must-gather`, you must specify the {ServerlessProductName} image.
9
10
10
-
To collect {ServerlessProductName} data with `must-gather`, you must specify the {ServerlessProductName} image:
0 commit comments