This document shows how to deploy the server using Red Hat OpenShift.
You will need a running OpenShift cluster, or OKD cluster. You can provision OpenShift on the IBM Cloud.
-
Using the OpenShift web console, select the
Application Console
view. -
Use the
+Create Project
button to create a new project, then click on your project to open it. -
In the
Overview
tab, click onBrowse Catalog
. -
Choose the
Node.js
app container and clickNext
. -
Give your application a name and add
https://github.com/IBM/speech-to-text-code-pattern
for theGit Repository
, then clickCreate
.
Create a config map to configure credentials for the Node.js server.
- Click on the
Resources
tab and chooseConfig Maps
and then click theCreate Config Map
button. - Provide a
Name
for the config map. - Add items with keys and values. The necessary keys to configure will depend on whether you are provisioning services using IBM Cloud Pak for Data or on IBM Cloud.
Click to expand one:
IBM Cloud Pak for Data
For the Speech to Text service, the following settings are needed:
-
Set SPEECH_TO_TEXT_AUTH_TYPE to cp4d
-
Provide the SPEECH_TO_TEXT_URL, SPEECH_TO_TEXT_USERNAME and SPEECH_TO_TEXT_PASSWORD for the user added to this service instance.
-
For the SPEECH_TO_TEXT_AUTH_URL use the base fragment of your URL including the host and port. I.e. https://{cpd_cluster_host}{:port}.
-
If your CPD installation is using a self-signed certificate, you need to disable SSL verification with SPEECH_TO_TEXT_AUTH_DISABLE_SSL set to true. You might also need to use browser-specific steps to ignore certificate errors (try browsing to the AUTH_URL). Disable SSL only if absolutely necessary, and take steps to enable SSL as soon as possible.
Key Value SPEECH_TO_TEXT_AUTH_TYPE cp4d SPEECH_TO_TEXT_URL https://{cpd_cluster_host}{:port}/speech-to-text/{release}/instances/{instance_id}/api SPEECH_TO_TEXT_AUTH_URL https://{cpd_cluster_host}{:port} SPEECH_TO_TEXT_USERNAME <add_speech-to-text_username> SPEECH_TO_TEXT_PASSWORD <add_speech-to-text_password> SPEECH_TO_TEXT_AUTH_DISABLE_SSL true or false PORT 8080
IBM Cloud
For the Speech to Text service, the following settings are needed:
-
Set SPEECH_TO_TEXT_AUTH_TYPE to iam
-
Provide the SPEECH_TO_TEXT_URL and SPEECH_TO_TEXT_APIKEY collected when you created the services.
Key Value SPEECH_TO_TEXT_AUTH_TYPE iam SPEECH_TO_TEXT_APIKEY <add_speech-to-text_apikey> SPEECH_TO_TEXT_URL <add_speech-to-text_url> PORT 8080
Create the config map and add it to your application.
- Hit the
Create
button. - Click on your new Config Map's name.
- Click the
Add to Application
button. - Select your application from the pulldown.
- Click
Save
. - Go to the
Applications
tab, chooseDeployments
to view the status of your application.
- From the OpenShift or OKD UI, under
Applications
▷Routes
you will see your app.- Click on the application
Name
. - Under
TLS Settings
, click onEdit
. - Under
Security
, check the box forSecure route
. - Hit
Save
.
- Click on the application
- Go back to
Applications
▷Routes
. You will see your app. - Click your app's
Hostname
. This will open the Speech to Text web app in your browser. - Go back to the README.md for instructions on how to use the app.