Skip to content

Commit 764f000

Browse files
committed
adding helm info
1 parent ad023f0 commit 764f000

File tree

1 file changed

+31
-4
lines changed

1 file changed

+31
-4
lines changed

articles/cognitive-services/Speech-Service/includes/speech-to-text-chart-config.md

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ title: Install Speech containers
33
titleSuffix: Azure Cognitive Services
44
description: Details the speech-to-text helm chart configuration options.
55
services: cognitive-services
6-
author: IEvangelist
6+
author: aahill
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.topic: include
11-
ms.date: 08/22/2019
12-
ms.author: dapine
11+
ms.date: 04/15/2020
12+
ms.author: aahi
1313
---
1414

1515
### Speech-to-Text (sub-chart: charts/speechToText)
@@ -34,4 +34,31 @@ To override the "umbrella" chart, add the prefix `speechToText.` on any paramete
3434
| `service.port`| The port of the **speech-to-text** service. | `80` |
3535
| `service.annotations` | The **speech-to-text** annotations for the service metadata. Annotations are key value pairs. <br>`annotations:`<br>&nbsp;&nbsp;`some/annotation1: value1`<br>&nbsp;&nbsp;`some/annotation2: value2` | |
3636
| `service.autoScaler.enabled` | Whether the [Horizontal Pod Autoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) is enabled. If `true`, the `speech-to-text-autoscaler` will be deployed in the Kubernetes cluster. | `true` |
37-
| `service.podDisruption.enabled` | Whether the [Pod Disruption Budget](https://kubernetes.io/docs/concepts/workloads/pods/disruptions/) is enabled. If `true`, the `speech-to-text-poddisruptionbudget` will be deployed in the Kubernetes cluster. | `true` |
37+
| `service.podDisruption.enabled` | Whether the [Pod Disruption Budget](https://kubernetes.io/docs/concepts/workloads/pods/disruptions/) is enabled. If `true`, the `speech-to-text-poddisruptionbudget` will be deployed in the Kubernetes cluster. | `true` |
38+
39+
#### Sentiment analysis (sub-chart: charts/speechToText)
40+
41+
Starting with v2.2.0 of the speech-to-text container, the following parameters are used for sentiment analysis using the Text Analytics API.
42+
43+
|Parameter|Description|Values|Default|
44+
| --- | --- | --- | --- |
45+
|`textanalytics.enabled`| Whether the **text-analytics** service is enabled| true/false| `false`|
46+
|`textanalytics.image.registry`| The **text-analytics** docker image registry| valid docker image registry| |
47+
|`textanalytics.image.repository`| The **text-analytics** docker image repository| valida docker image repository| |
48+
|`textanalytics.image.tag`| The **text-analytics** docker image tag| valid docker image tag| |
49+
|`textanalytics.image.pullSecrets`| The image secrets for pulling **text-analytics** docker image| valida secrets name| |
50+
|`textanalytics.image.pullByHash`| Specifies if you are pulling docker image by hash. If `yes`, `image.hash` is required to have as well. If `no`, set it as 'false'. Default is `false`.| true/false| `false`|
51+
|`textanalytics.image.hash`| The **text-analytics** docker image hash. Only use it with `image.pullByHash:true`.| valid docker image hash | |
52+
|`textanalytics.image.args.eula`| One of the required arguments by **text-analytics** container, which indicates you've accepted the license. The value of this option must be: `accept`.| `accept`, if you want to use the container | |
53+
|`textanalytics.image.args.billing`| One of the required arguments by **text-analytics** container, which specifies the billing endpoint URI. The billing endpoint URI value is available on the Azure portal's Speech Overview page.|valid billing endpoint URI||
54+
|`textanalytics.image.args.apikey`| One of the required arguments by **text-analytics** container, which is used to track billing information.| valid apikey||
55+
|`textanalytics.cpuRequest`| The requested CPU for **text-analytics** container| int| `3000m`|
56+
|`textanalytics.cpuLimit`| The limited CPU for **text-analytics** container| | `8000m`|
57+
|`textanalytics.memoryRequest`| The requested memory for **text-analytics** container| | `6Gi`|
58+
|`textanalytics.memoryLimit`| The limited memory for **text-analytics** container| | `8Gi`|
59+
|`textanalytics.service.sentimentURISuffix`| The sentiment analysis URI suffix, the whole URI is in format "http://`<service>`:`<port>`/`<sentimentURISuffix>`". | | `text/analytics/v3.0-preview/sentiment`|
60+
|`textanalytics.service.type`| The type of **text-analytics** service in Kubernetes. See [Kubernetes service types](https://kubernetes.io/docs/concepts/services-networking/service/) | valid Kuberntes service type | `LoadBalancer` |
61+
|`textanalytics.service.port`| The port of the **text-analytics** service| int| `50085`|
62+
|`textanalytics.service.annotations`| The annotations users can add to **text-analytics** service metadata. For instance:<br/> **annotations:**<br/>` ` **some/annotation1: value1**<br/>` ` **some/annotation2: value2** | annotations, one per each line| |
63+
|`textanalytics.serivce.autoScaler.enabled`| Whether [Horizontal Pod Autoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) is enabled. If enabled, `text-analytics-autoscaler` will be deployed in the Kubernetes cluster | true/false| `true`|
64+
|`textanalytics.service.podDisruption.enabled`| Whether [Pod Disruption Budget](https://kubernetes.io/docs/concepts/workloads/pods/disruptions/) is enabled. If enabled, `text-analytics-poddisruptionbudget` will be deployed in the Kubernetes cluster| true/false| `true`|

0 commit comments

Comments
 (0)