Skip to content

Commit

Permalink
fixup! config: allow overriding rpc and pub/sub labels
Browse files Browse the repository at this point in the history
  • Loading branch information
VDanielEdwards committed Oct 29, 2024
1 parent b2da580 commit 4d1b59b
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions docs/configuration/services-configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,13 @@ DataPublishers
DataPublishers:
- Name: DataPublisher1
Topic: SomeTopic1
Labels:
- Key: SomeKey
Value: SomeValue
Kind: Mandatory
- Key: AnotherKey
Value: AnotherValue
Kind: Optional
.. list-table:: DataPublisher Configuration
Expand All @@ -147,6 +154,8 @@ DataPublishers
- The name of the data publisher.
* - Topic
- The topic on which the data publisher publishes its information. (optional)
* - Labels
- The labels determining matching subscribers with the same topic and media type. (optional)


.. _sec:cfg-participant-data-subscribers:
Expand All @@ -159,6 +168,13 @@ DataSubscribers
DataSubscribers:
- Name: DataSubscriber1
Topic: SomeTopic1
Labels:
- Key: SomeKey
Value: SomeValue
Kind: Mandatory
- Key: AnotherKey
Value: AnotherValue
Kind: Optional
.. list-table:: DataSubscriber Configuration
Expand All @@ -171,6 +187,8 @@ DataSubscribers
- The name of the data subscriber.
* - Topic
- The topic on which the data subscriber publishes its information. (optional)
* - Labels
- The labels determining matching publishers with the same topic and media type. (optional)


.. _sec:cfg-participant-rpc-servers:
Expand All @@ -184,6 +202,13 @@ RpcServers
RpcServers:
- Name: RpcServer1
FunctionName: SomeFunction1
Labels:
- Key: SomeKey
Value: SomeValue
Kind: Mandatory
- Key: AnotherKey
Value: AnotherValue
Kind: Optional
.. list-table:: RPC Server Configuration
Expand All @@ -196,6 +221,8 @@ RpcServers
- The name of the RPC server.
* - FunctionName
- The function name on which the RPC server offers its service. (optional)
* - Labels
- The labels determining matching clients with the same function name and media type. (optional)


.. _sec:cfg-participant-rpc-clients:
Expand All @@ -208,6 +235,13 @@ RpcClients
RpcClients:
- Name: RpcClient1
FunctionName: SomeFunction1
Labels:
- Key: SomeKey
Value: SomeValue
Kind: Mandatory
- Key: AnotherKey
Value: AnotherValue
Kind: Optional
.. list-table:: RPC Clients Configuration
Expand All @@ -220,3 +254,5 @@ RpcClients
- The name of the RPC client.
* - FunctionName
- The function name to which the RPC client wants to connect to. (optional)
* - Labels
- The labels determining matching servers with the same function name and media type. (optional)

0 comments on commit 4d1b59b

Please sign in to comment.