mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
SRVCOM-1288 + SRVCOM-1664: Clean up attributes, prereqs
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
:_content-type: ASSEMBLY
|
||||
[id="serverless-jaeger-integration"]
|
||||
= Integrating distributed tracing with serverless applications using OpenShift Serverless
|
||||
:context: serverless-jaeger-integration
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
You can enable distributed tracing with xref:../../serverless/serverless-getting-started.adoc#serverless-getting-started[{ServerlessProductName}] for your serverless applications on {product-title}.
|
||||
|
||||
include::modules/serverless-jaeger-config.adoc[leveloffset=+1]
|
||||
@@ -1,12 +0,0 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-jaeger-integration"]
|
||||
= Integrating Jaeger with serverless applications using OpenShift Serverless
|
||||
:context: serverless-jaeger-integration
|
||||
include::modules/common-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
Using Jaeger with xref:../../serverless/discover/about-serverless.adoc#about-serverless[{ServerlessProductName}] allows you to enable distributed tracing for your serverless applications on {product-title}.
|
||||
|
||||
include::modules/serverless-jaeger-config.adoc[leveloffset=+1]
|
||||
@@ -1,3 +1,7 @@
|
||||
// Module included in the following assemblies:
|
||||
//
|
||||
// * serverless/develop/serverless-configuring-routes.adoc
|
||||
|
||||
:_content-type: PROCEDURE
|
||||
[id="knative-service-cluster-local_{context}"]
|
||||
= Setting cluster availability to cluster local
|
||||
@@ -15,6 +19,12 @@ Developers can label individual services in the cluster with the `networking.kna
|
||||
====
|
||||
For {ServerlessProductName} 1.15.0 and newer versions, the `serving.knative.dev/visibility` label is no longer available. You must update existing services to use the `networking.knative.dev/visibility` label instead.
|
||||
====
|
||||
// remove note for 4.10, OSD
|
||||
|
||||
.Prerequisites
|
||||
|
||||
* The {ServerlessOperatorName} and Knative Serving are installed on the cluster.
|
||||
* You have created a Knative service.
|
||||
|
||||
.Procedure
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
// * serverless/develop/serverless-autoscaling-developer.adoc
|
||||
|
||||
:_content-type: REFERENCE
|
||||
[id="serverless-autoscaling-developer-maxscale_context"]
|
||||
[id="serverless-autoscaling-developer-maxscale_{context}"]
|
||||
= Maximum scale bounds
|
||||
|
||||
The maximum number of replicas that can serve an application is determined by the `maxScale` annotation. If the `maxScale` annotation is not set, there is no upper limit for the number of replicas created.
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
// Module included in the following assemblies:
|
||||
//
|
||||
// * serverless/develop/serverless-event-sinks.adoc
|
||||
|
||||
:_content-type: PROCEDURE
|
||||
[id="serverless-connect-sink-source-odc_{context}"]
|
||||
= Connect an event source to a sink using the Developer perspective
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
// Module included in the following assemblies:
|
||||
//
|
||||
// * serverless/develop/serverless-event-sinks.adoc
|
||||
|
||||
:_content-type: REFERENCE
|
||||
[id="serverless-connect-trigger-sink_{context}"]
|
||||
= Connecting a trigger to a sink
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
//
|
||||
// serverless/develop/serverless-event-delivery.adoc
|
||||
|
||||
:_content-type: CONCEPT
|
||||
[id="serverless-event-delivery-component-behaviors_{context}"]
|
||||
= Event delivery behavior for Knative Eventing channels
|
||||
|
||||
|
||||
17
modules/serverless-event-delivery-parameters.adoc
Normal file
17
modules/serverless-event-delivery-parameters.adoc
Normal file
@@ -0,0 +1,17 @@
|
||||
// Module included in the following assemblies:
|
||||
//
|
||||
// serverless/develop/serverless-event-delivery.adoc
|
||||
|
||||
:_content-type: CONCEPT
|
||||
[id="serverless-event-delivery-parameters_{context}"]
|
||||
= Configurable event delivery parameters
|
||||
|
||||
The following parameters can be configured for event delivery.
|
||||
|
||||
Dead letter sink:: You can configure the `deadLetterSink` delivery parameter so that if an event fails to be delivered it is sent to the specified event sink.
|
||||
|
||||
Retries:: You can set a minimum number of times that the delivery must be retried before the event is sent to the dead letter sink, by configuring the `retry` delivery parameter with an integer value.
|
||||
|
||||
Back off delay:: You can set the `backoffDelay` delivery parameter to specify the time delay before an event delivery retry is attempted after a failure. The duration of the `backoffDelay` parameter is specified using the https://en.wikipedia.org/wiki/ISO_8601#Durations[ISO 8601] format.
|
||||
|
||||
Back off policy:: The `backoffPolicy` delivery parameter can be used to specify the retry back off policy. The policy can be specified as either `linear` or `exponential`. When using the `linear` back off policy, the back off delay is the time interval specified between retries. When using the `exponential` backoff policy, the back off delay is equal to `backoffDelay*2^<numberOfRetries>`.
|
||||
@@ -1,3 +1,7 @@
|
||||
// Module included in the following assemblies:
|
||||
//
|
||||
// * serverless/develop/serverless-configuring-routes.adoc
|
||||
|
||||
:_content-type: PROCEDURE
|
||||
[id="serverless-openshift-routes_{context}"]
|
||||
= Configuring {product-title} routes for Knative services
|
||||
@@ -13,11 +17,6 @@ When you complete the following procedure, the default {product-title} route in
|
||||
|
||||
* The {ServerlessOperatorName} and Knative Serving component must be installed on your {product-title} cluster.
|
||||
|
||||
[NOTE]
|
||||
====
|
||||
You must modify the replaceable values in the example commands for the following procedure.
|
||||
====
|
||||
|
||||
.Procedure
|
||||
|
||||
. Create a Knative service that includes the `serving.knative.openshift.io/disableRoute=true` annotation:
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
// Module included in the following assemblies:
|
||||
//
|
||||
// serverless/knative_eventing/serverless-event-delivery.adoc
|
||||
// serverless/develop/serverless-event-delivery.adoc
|
||||
|
||||
:_content-type: REFERENCE
|
||||
[id="serverless-subscription-event-delivery-config_{context}"]
|
||||
= Configuring event delivery failure parameters using subscriptions
|
||||
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
// Module included in the following assemblies:
|
||||
//
|
||||
// * serverless/develop/serverless-event-sinks.adoc
|
||||
|
||||
:_content-type: REFERENCE
|
||||
[id="specifying-sink-flag-kn_{context}"]
|
||||
= Knative CLI --sink flag
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-admin-metrics"]
|
||||
= Metrics
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-admin-metrics
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-admin-monitoring"]
|
||||
= Monitoring serverless components
|
||||
:context: serverless-admin-monitoring
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
[id="serverless-configuration"]
|
||||
= Configuring {ServerlessProductName}
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-configuration"]
|
||||
= Configuring {ServerlessProductName}
|
||||
:context: serverless-configuration
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
[id="serverless-ha"]
|
||||
= High availability on {ServerlessProductName}
|
||||
include::modules/common-attributes.adoc[]
|
||||
:context: serverless-ha
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/ossm-document-attributes.adoc[]
|
||||
[id="serverless-ossm-setup"]
|
||||
= Integrating Service Mesh with OpenShift Serverless
|
||||
:context: serverless-ossm-setup
|
||||
include::modules/common-attributes.adoc[]
|
||||
[id="serverless-ossm-setup"]
|
||||
= Integrating {ProductShortName} with {ServerlessProductName}
|
||||
:context: serverless-ossm-setup
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="advanced-kn-config"]
|
||||
= Knative CLI advanced configuration
|
||||
:context: advanced-kn-config
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="installing-kn"]
|
||||
= Installing the Knative CLI
|
||||
:context: installing-kn
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: installing-kn
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-apiserversource"]
|
||||
= Using the API server source
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-apiserversource
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-configuring-routes"]
|
||||
= Routing
|
||||
:context: serverless-configuring-routes
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-creating-channels"]
|
||||
= Creating and deleting channels
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-creating-channels
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-custom-event-sources"]
|
||||
= Custom event sources
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-custom-event-sources
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-event-delivery"]
|
||||
= Event delivery
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-event-delivery
|
||||
|
||||
toc::[]
|
||||
@@ -10,19 +10,6 @@ toc::[]
|
||||
You can configure event delivery parameters for Knative Eventing that are applied in cases where an event fails to be delivered by a xref:../../serverless/develop/serverless-subs.adoc#serverless-subs[subscription] or xref:../../serverless/develop/serverless-triggers.adoc#serverless-triggers[trigger] to a subscriber. Event delivery parameters are configured individually per subscriber.
|
||||
|
||||
include::modules/serverless-event-delivery-component-behaviors.adoc[leveloffset=+1]
|
||||
|
||||
[id="serverless-event-delivery-parameters"]
|
||||
== Configurable parameters
|
||||
|
||||
The following parameters can be configured for event delivery.
|
||||
|
||||
Dead letter sink:: You can configure the `deadLetterSink` delivery parameter so that if an event fails to be delivered it is sent to the specified event sink.
|
||||
|
||||
Retries:: You can set a minimum number of times that the delivery must be retried before the event is sent to the dead letter sink, by configuring the `retry` delivery parameter with an integer value.
|
||||
|
||||
Back off delay:: You can set the `backoffDelay` delivery parameter to specify the time delay before an event delivery retry is attempted after a failure. The duration of the `backoffDelay` parameter is specified using the https://en.wikipedia.org/wiki/ISO_8601#Durations[ISO 8601] format.
|
||||
|
||||
Back off policy:: The `backoffPolicy` delivery parameter can be used to specify the retry back off policy. The policy can be specified as either `linear` or `exponential`. When using the `linear` back off policy, the back off delay is the time interval specified between retries. When using the `exponential` backoff policy, the back off delay is equal to `backoffDelay*2^<numberOfRetries>`.
|
||||
|
||||
include::modules/serverless-event-delivery-parameters.adoc[leveloffset=+1]
|
||||
include::modules/serverless-subscription-event-delivery-config.adoc[leveloffset=+1]
|
||||
// add docs for configuration in triggers
|
||||
|
||||
@@ -1,21 +1,22 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-event-sinks"]
|
||||
= Event sinks
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-event-sinks
|
||||
|
||||
toc::[]
|
||||
|
||||
A sink is an addressable custom resource (CR) that can receive incoming events from other resources. Knative services, channels, and brokers are all examples of sinks.
|
||||
|
||||
// Using --sink flag with kn (generic)
|
||||
include::modules/specifying-sink-flag-kn.adoc[leveloffset=+1]
|
||||
|
||||
[TIP]
|
||||
====
|
||||
You can configure which CRs can be used with the `--sink` flag for `kn` CLI commands by xref:../../serverless/cli_tools/advanced-kn-config.adoc#serverless-kn-config_advanced-kn-config[Customizing `kn`].
|
||||
====
|
||||
|
||||
// Using --sink flag with kn (generic)
|
||||
include::modules/specifying-sink-flag-kn.adoc[leveloffset=+1]
|
||||
// Connect sinks to sources in ODC
|
||||
include::modules/serverless-connect-sink-source-odc.adoc[leveloffset=+1]
|
||||
// Connect a trigger to a sink
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-pingsource"]
|
||||
= Using a ping source
|
||||
:context: serverless-pingsource
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-subs"]
|
||||
= Subscriptions
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-subs
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-developing-go-functions"]
|
||||
= Developing Golang functions
|
||||
:context: serverless-developing-go-functions
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-developing-nodejs-functions"]
|
||||
= Developing Node.js functions
|
||||
:context: serverless-developing-nodejs-functions
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-developing-python-functions"]
|
||||
= Developing Python functions
|
||||
:context: serverless-developing-python-functions
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-developing-quarkus-functions"]
|
||||
= Developing Quarkus functions
|
||||
:context: serverless-developing-quarkus-functions
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-developing-typescript-functions"]
|
||||
= Developing TypeScript functions
|
||||
:context: serverless-developing-typescript-functions
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -36,4 +36,3 @@ include::modules/serverless-testing-typescript-functions.adoc[leveloffset=+1]
|
||||
* See the xref:../../serverless/functions/serverless-functions-reference-guide.adoc#serverless-typescript-context-object-reference_serverless-functions-reference-guide[TypeScript context object reference] documentation.
|
||||
* xref:../../serverless/functions/serverless-functions-getting-started.adoc#serverless-build-func-kn_serverless-functions-getting-started[Build] and xref:../../serverless/functions/serverless-functions-getting-started.adoc#serverless-deploy-func-kn_serverless-functions-getting-started[deploy] a function.
|
||||
* See link:https://getpino.io/#/docs/api[the Pino API documentation] for more information on logging with functions.
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-functions-accessing-secrets-configmaps"]
|
||||
= Accessing secrets and config maps from Serverless functions
|
||||
= Accessing secrets and config maps from serverless functions
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-functions-secrets
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-functions-attributes"]
|
||||
= Adding annotations to functions
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-functions-annotations
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-functions-eventing"]
|
||||
= Using functions with Knative Eventing
|
||||
:context: serverless-functions-eventing
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
:context: serverless-functions-eventing
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-functions-getting-started"]
|
||||
= Getting started with functions
|
||||
:context: serverless-functions-getting-started
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-functions-reference-guide"]
|
||||
= Functions development reference guide
|
||||
:context: serverless-functions-reference-guide
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-functions-reference-guide
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
[id="serverless-functions-setup"]
|
||||
= Setting up {FunctionsProductName}
|
||||
:context: serverless-functions-setup
|
||||
include::modules/common-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-functions-project-configuration"]
|
||||
= Function project configuration in func.yaml
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-functions-yaml
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
[id="install-serverless-operator"]
|
||||
= Installing the {ServerlessOperatorName}
|
||||
include::modules/common-attributes.adoc[]
|
||||
:context: install-serverless-operator
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
[id="removing-openshift-serverless"]
|
||||
= Removing {ServerlessProductName}
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="removing-openshift-serverless"]
|
||||
= Removing {ServerlessProductName}
|
||||
:context: removing-openshift-serverless
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
[id="gpu-resources"]
|
||||
= Using NVIDIA GPU resources with serverless applications
|
||||
:context: gpu-resources
|
||||
include::modules/common-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
[id="cluster-logging-serverless"]
|
||||
= Using OpenShift Logging with {ServerlessProductName}
|
||||
include::modules/common-attributes.adoc[]
|
||||
:context: cluster-logging-serverless
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-service-monitoring"]
|
||||
= Monitoring Knative services
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
:context: serverless-service-monitoring
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-serving-metrics"]
|
||||
= Metrics
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-serving-metrics
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-tracing"]
|
||||
= Tracing requests using Jaeger
|
||||
:context: serverless-tracing
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="kn-event-ref"]
|
||||
= kn event
|
||||
:context: kn-event-ref
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: kn-event-ref
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="kn-eventing-ref"]
|
||||
= Knative Eventing CLI commands
|
||||
:context: kn-eventing-ref
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: kn-eventing-ref
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="kn-flags-reference"]
|
||||
= kn flags reference
|
||||
:context: kn-flags-reference
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: kn-flags-reference
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="kn-func-ref"]
|
||||
= kn func
|
||||
:context: kn-func-ref
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: kn-func-ref
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="kn-serving-ref"]
|
||||
= Knative Serving CLI commands
|
||||
:context: kn-serving-ref
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: kn-serving-ref
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-listing-event-sources"]
|
||||
= Listing event sources and event source types
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
:context: serverless-listing-event-sources
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/ossm-document-attributes.adoc[]
|
||||
[id="serverless-custom-domains"]
|
||||
= Configuring a custom domain for a Knative service
|
||||
:context: serverless-custom-domains
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/ossm-document-attributes.adoc[]
|
||||
:context: serverless-custom-domains
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
:_content-type: ASSEMBLY
|
||||
[id="serverless-custom-tls-cert-domain-mapping"]
|
||||
= Using a custom TLS certificate for domain mapping
|
||||
:context: serverless-custom-tls-cert-domain-mapping
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/ossm-document-attributes.adoc[]
|
||||
:context: serverless-custom-tls-cert-domain-mapping
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/ossm-document-attributes.adoc[]
|
||||
[id="serverless-ossm-with-kourier-jwt"]
|
||||
= Configuring JSON Web Token authentication for Knative services
|
||||
:context: serverless-ossm-with-kourier-jwt
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/ossm-document-attributes.adoc[]
|
||||
:context: serverless-ossm-with-kourier-jwt
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-getting-started"]
|
||||
= Getting started with {ServerlessProductName}
|
||||
:context: serverless-getting-started
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
[id="serverless-release-notes"]
|
||||
= {ServerlessProductName} Release Notes
|
||||
:context: serverless-release-notes
|
||||
include::modules/common-attributes.adoc[]
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
:_content-type: ASSEMBLY
|
||||
include::modules/serverless-document-attributes.adoc[]
|
||||
include::modules/common-attributes.adoc[]
|
||||
[id="serverless-support"]
|
||||
= {ServerlessProductName} support
|
||||
:context: serverless-support
|
||||
include::modules/common-attributes.adoc[]
|
||||
|
||||
toc::[]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user