Skip to content

Commit 503049f

Browse files
authored
Merge pull request #295433 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 852b8e3 + b673726 commit 503049f

File tree

4 files changed

+46
-29
lines changed

4 files changed

+46
-29
lines changed

articles/communication-services/concepts/voice-video-calling/real-time-text.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.subservice: calling
1616
# Real Time Text (RTT) Overview
1717

1818
>[!NOTE]
19-
>RTT is an accessibility compliance requirement for voice and video platforms in the EU. You can find more information about this here: [Directive 2019/882](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32019L0882)
19+
>RTT is an accessibility compliance requirement for voice and video platforms in the EU starting June 30, 2025. You can find more information about this here: [Directive 2019/882](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32019L0882)
2020
2121
Real Time Text (RTT) provides developers with the ability to transmit text in near real-time during a call. This feature is designed to empower individuals who have difficulty speaking, ensuring their text messages are displayed prominently to other meeting participants, similar to spoken communication. RTT enhances accessibility by allowing participants to communicate effectively through typed messages that are broadcast instantly character by character, without having to press a "send" key.
2222

@@ -53,6 +53,9 @@ The `RealTimeTextInfo` (or `RealTimeTextDetails` on certain platforms) class is
5353

5454
Developers can subscribe to RTT events through a single event subscription, allowing them to manage their own list and ordering of RTT messages. This approach aligns with the Captions API, facilitating easier integration and maintenance. The UI is responsible for binding the data to the screen, managing the display list, and handling text input interactions based on message finalization.
5555

56+
>[!NOTE]
57+
>RTT Teams Interlop is not functional yet.
58+
5659
### Privacy Concerns
5760
Real-Time Text (RTT) is only available during the call or meeting. Azure Communication Services doesn't store these text exchanges anywhere. Many countries/regions and states have laws and regulations that apply to the storing of data. It is your responsibility to use RTT in compliance with the law should you choose to store any of the data generated through RTT. You must obtain consent from the parties involved in a manner that complies with the laws applicable to each participant.
5861

articles/communication-services/quickstarts/voice-video-calling/get-started-with-real-time-text.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ zone_pivot_groups: acs-programming-languages-java-swift-csharp
1414

1515

1616

17-
# Real Time Text
17+
# Quickstart RTT within your application
1818

1919
[!INCLUDE [Public Preview Disclaimer](../../includes/public-preview-include-document.md)]
2020

21+
>[!NOTE]
22+
>RTT is an accessibility compliance requirement for voice and video platforms in the EU starting June 30, 2025. You can find more information about this here: [Directive 2019/882](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32019L0882).
23+
2124
Learn how to integrate Real Time Text (RTT) into your calling applications to enhance accessibility and ensure that all participants can communicate effectively during meetings.
2225

2326
RTT allows users who have difficulty speaking to participate actively by typing their messages, which are then broadcast in near real-time to other meeting participants. This feature operates seamlessly alongside existing captions and ensures that typed messages are promptly delivered without disrupting the flow of conversation.
@@ -28,6 +31,9 @@ Real Time Text (RTT) is designed to facilitate communication for users who may h
2831

2932
On supported platforms, RTT data can be displayed alongside captions derived from Speech to Text, providing a comprehensive view of all communications during a call.
3033

34+
>[!NOTE]
35+
>RTT Teams Interlop is not functional yet.
36+
3137
## Naming Conventions
3238

3339
Different platforms may use varying terminology for RTT-related properties. Below is a summary of these differences:
@@ -70,5 +76,5 @@ The `RealTimeTextInfo` (or `RealTimeTextDetails` on Windows) class encapsulates
7076
## Next steps
7177

7278
For more information, see the following articles:
73-
79+
- [Real Time Text Conceptual Doc](../../concepts/voice-video-calling/real-time-text.md)
7480
- [Azure Communication Services Calling Documentation](../../concepts/voice-video-calling/calling-sdk-features.md)

articles/openshift/howto-infrastructure-nodes.md

Lines changed: 33 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,39 @@ Vnet:
213213
oc get machineset <machineset_name> -n openshift-machine-api -o jsonpath='{.spec.template.spec.providerSpec.value.vnet}'
214214
```
215215
216+
## DNS
217+
218+
Follow the instructions below to enable scheduling of DNS pods on the infrastructure nodes.
219+
220+
> [!NOTE]
221+
> This section is crucial to support log collection from infrastructure nodes, ensuring supportability of your deployment.
222+
>
223+
224+
1. Allow the DNS pods to run on the infrastructure nodes.
225+
226+
```
227+
oc edit dns.operator/default
228+
```
229+
230+
```
231+
apiVersion: operator.openshift.io/v1
232+
kind: DNS
233+
metadata:
234+
name: default
235+
spec:
236+
nodePlacement:
237+
tolerations:
238+
- operator: Exists
239+
```
240+
241+
1. Verify that DNS pods are scheduled onto all infra nodes.
242+
243+
```
244+
oc get ds/dns-default -n openshift-dns
245+
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
246+
dns-default 7 7 7 7 7 kubernetes.io/os=linux 35d
247+
```
248+
216249
## Moving workloads to the new infrastructure nodes
217250
218251
Use the instructions below to move your infrastructure workloads to the infrastructure nodes previously created.
@@ -359,30 +392,4 @@ Use this procedure for any additional ingress controllers you may have in the cl
359392
kube-state-metrics-574c5bfdd7-f7fjk 3/3 Running 0 2m49s 10.131.4.8 cz-cluster-hsmtw-infra-aro-machinesets-eastus-1-vr56r <none> <none>
360393
```
361394
362-
### DNS
363-
364-
1. Allow the DNS pods to run on the infrastructure nodes.
365-
366-
```
367-
oc edit dns.operator/default
368-
```
369-
370-
```
371-
apiVersion: operator.openshift.io/v1
372-
kind: DNS
373-
metadata:
374-
name: default
375-
spec:
376-
nodePlacement:
377-
tolerations:
378-
- operator: Exists
379-
```
380-
381-
1. Verify that DNS pods are scheduled onto all infra nodes.
382-
383-
```
384-
oc get ds/dns-default -n openshift-dns
385-
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
386-
dns-default 7 7 7 7 7 kubernetes.io/os=linux 35d
387-
```
388395

includes/azure-virtual-network-limits.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ The following limits apply only for networking resources managed through **Azure
4242
| Application security groups that can be specified within all security rules of a network security group |100 |
4343
| User-defined route tables |200 |
4444
| User-defined routes per route table |400 |
45+
| Routes with service tag per route table | 25 |
4546
| Point-to-site root certificates per Azure VPN Gateway |20 |
4647
| Point-to-site revoked client certificates per Azure VPN Gateway |300 |
4748
| Virtual network TAPs |100 |

0 commit comments

Comments
 (0)