Skip to content

Commit 3b232a4

Browse files
authored
Merge pull request #46660 from rh-max/srvls-functions-abstracts
[SRVCOM-1831] Serverless functions: update abstracts format
2 parents f2a5eef + e61d076 commit 3b232a4

File tree

94 files changed

+771
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+771
-158
lines changed

_topic_maps/_topic_map.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3592,7 +3592,7 @@ Topics:
35923592
File: serverless-developing-nodejs-functions
35933593
- Name: Developing TypeScript functions
35943594
File: serverless-developing-typescript-functions
3595-
- Name: Developing Golang functions
3595+
- Name: Developing Go functions
35963596
File: serverless-developing-go-functions
35973597
- Name: Developing Python functions
35983598
File: serverless-developing-python-functions

_topic_maps/_topic_map_osd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ Topics:
326326
File: serverless-developing-nodejs-functions
327327
- Name: Developing TypeScript functions
328328
File: serverless-developing-typescript-functions
329-
- Name: Developing Golang functions
329+
- Name: Developing Go functions
330330
File: serverless-developing-go-functions
331331
- Name: Developing Python functions
332332
File: serverless-developing-python-functions

_topic_maps/_topic_map_rosa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ Topics:
435435
File: serverless-developing-nodejs-functions
436436
- Name: Developing TypeScript functions
437437
File: serverless-developing-typescript-functions
438-
- Name: Developing Golang functions
438+
- Name: Developing Go functions
439439
File: serverless-developing-go-functions
440440
- Name: Developing Python functions
441441
File: serverless-developing-python-functions

_unused_topics/serverless-rn-template-module.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* {ServerlessProductName} now uses Knative Serving 0.x.
1818
* {ServerlessProductName} now uses Knative Eventing 0.x.
1919
* {ServerlessProductName} now uses Kourier 0.x.
20-
* {ServerlessProductName} now uses Knative `kn` CLI 0.x.
20+
* {ServerlessProductName} now uses Knative (`kn`) CLI 0.x.
2121
* {ServerlessProductName} now uses Knative Kafka 0.x.
2222
* The `kn func` CLI plug-in now uses `func` 0.x.
2323

cli_reference/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following set of CLI tools are available in {product-title}:
2424

2525
* xref:../cli_reference/openshift_cli/getting-started-cli.adoc#cli-getting-started[OpenShift CLI (oc)]: This is the most commonly used CLI tool by {product-title} users. It helps both cluster administrators and developers to perform end-to-end operations across {product-title} using the terminal. Unlike the web console, it allows the user to work directly with the project source code using command scripts.
2626

27-
* xref:../cli_reference/kn-cli-tools.adoc#kn-cli-tools[Knative CLI (kn)]: The `kn` CLI tool provides simple and intuitive terminal commands that can be used to interact with OpenShift Serverless components, such as Knative Serving and Eventing.
27+
* xref:../cli_reference/kn-cli-tools.adoc#kn-cli-tools[Knative CLI (kn)]: The Knative (`kn`) CLI tool provides simple and intuitive terminal commands that can be used to interact with OpenShift Serverless components, such as Knative Serving and Eventing.
2828

2929
* xref:../cli_reference/tkn_cli/installing-tkn.adoc#installing-tkn[Pipelines CLI (tkn)]: OpenShift Pipelines is a continuous integration and continuous delivery (CI/CD) solution in {product-title}, which internally uses Tekton. The `tkn` CLI tool provides simple and intuitive commands to interact with OpenShift Pipelines using the terminal.
3030

cli_reference/kn-cli-tools.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
:_content-type: ASSEMBLY
22
include::_attributes/common-attributes.adoc[]
33
[id="kn-cli-tools"]
4-
= Knative CLI (kn) for use with {ServerlessProductName}
4+
= Knative CLI for use with {ServerlessProductName}
55
:context: kn-cli-tools
66

77
toc::[]
88

9-
The Knative `kn` CLI enables simple interaction with Knative components on {product-title}.
9+
The Knative (`kn`) CLI enables simple interaction with Knative components on {product-title}.
1010

1111
[id="kn-cli-tools-key-features"]
1212
== Key features
1313

14-
The `kn` CLI is designed to make serverless computing tasks simple and concise.
15-
Key features of the `kn` CLI include:
14+
The Knative (`kn`) CLI is designed to make serverless computing tasks simple and concise.
15+
Key features of the Knative CLI include:
1616

1717
* Deploy serverless applications from the command line.
1818
* Manage features of Knative Serving, such as services, revisions, and traffic-splitting.
1919
* Create and manage Knative Eventing components, such as event sources and triggers.
2020
* Create sink bindings to connect existing Kubernetes applications and Knative services.
21-
* Extend the `kn` CLI with flexible plug-in architecture, similar to the `kubectl` CLI.
21+
* Extend the Knative CLI with flexible plug-in architecture, similar to the `kubectl` CLI.
2222
* Configure autoscaling parameters for Knative services.
2323
* Scripted usage, such as waiting for the results of an operation, or deploying custom rollout and rollback strategies.
2424

modules/creating-serverless-apps-kn.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
[id="creating-serverless-apps-kn_{context}"]
88
= Creating serverless applications by using the Knative CLI
99

10-
Using the `kn` CLI to create serverless applications provides a more streamlined and intuitive user interface over modifying YAML files directly. You can use the `kn service create` command to create a basic serverless application using the `kn` CLI.
10+
Using the Knative (`kn`) CLI to create serverless applications provides a more streamlined and intuitive user interface over modifying YAML files directly. You can use the `kn service create` command to create a basic serverless application.
1111

1212
.Prerequisites
1313

1414
* {ServerlessOperatorName} and Knative Serving are installed on your cluster.
15-
* You have installed the `kn` CLI.
15+
* You have installed the Knative (`kn`) CLI.
1616
* You have created a project or have access to a project with the appropriate roles and permissions to create applications and other workloads in {product-title}.
1717
1818
.Procedure

modules/delete-kn-trigger.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[id="delete-kn-trigger_{context}"]
77
= Deleting a trigger by using the Knative CLI
88

9-
Using the `kn` CLI to delete a trigger provides a streamlined and intuitive user interface. You can use the `kn trigger delete` command to delete a trigger.
9+
Using the Knative (`kn`) CLI to delete a trigger provides a streamlined and intuitive user interface. You can use the `kn trigger delete` command to delete a trigger.
1010

1111
.Prerequisites
1212

modules/kn-trigger-describe.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[id="kn-trigger-describe_{context}"]
77
= Describing a trigger by using the Knative CLI
88

9-
Using the `kn` CLI to describe triggers provides a streamlined and intuitive user interface. You can use the `kn trigger describe` command to print information about existing triggers in your cluster by using the `kn` CLI.
9+
Using the Knative (`kn`) CLI to describe triggers provides a streamlined and intuitive user interface. You can use the `kn trigger describe` command to print information about existing triggers in your cluster by using the Knative CLI.
1010

1111
.Prerequisites
1212

modules/kn-trigger-filtering.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
= Filtering events with triggers by using the Knative CLI
88
// should be a procedure module but out of scope for this PR
99

10-
Using the `kn` CLI to filter events by using triggers provides a streamlined and intuitive user interface. You can use the `kn trigger create` command, along with the appropriate flags, to filter events by using triggers.
10+
Using the Knative (`kn`) CLI to filter events by using triggers provides a streamlined and intuitive user interface. You can use the `kn trigger create` command, along with the appropriate flags, to filter events by using triggers.
1111

1212
In the following trigger example, only events with the attribute `type: dev.knative.samples.helloworld` are sent to the event sink:
1313

0 commit comments

Comments
 (0)