This extract is from a bash automation script in the question-answering GitHub project. The bash script automates the deployment to IBM Cloud Code Engine. The extraction is about the building and pushing a container to the IBM Cloud Container Registry.
A custom Reranker deployment on Kubernetes
The objective of this project is to deploy the Reranker to a Kubernetes cluster in a VPC on IBM Cloud and access the REST API of the Reranker. The Reranker is a component of PrimeQA.
Example of how to connect and use Elasticsearch on IBM Cloud Databases using bash automation and CURL commands
This blog post is a short example of connecting to Elasticsearch on IBM Cloud with Databases for Elasticsearch using bash scripting with cURL.
Custom domain and TLS certificate for your application on IBM Cloud Code Engine
This blog post is about using the domain mapping functionality in IBM Cloud Code Engine to use custom domains and TLS certificates for your applications. The source code related to an example setup is in the GitHub project example WebApp build on Vue.js. But now we are going to use a wild card certificate for our domain *.example.com. With a TLS certificate for that domain.
Some fun with “Watson Text to Speech” and voice model customization
My last blog post was about Watson Speech to Text language model customization and this blog post is about IBM Cloud Watson Text to Speech (TTS) custom voice model configuration. Because, now it's time to have some fun with the Watson TTS service. I created a fun customisation of the service that the German pronunciation sounds a little bit like the palatinate dialect. Here are the differences with two wav file I created with a custom Watson to Text to Speech voice model.
Watson Speech to Text language model customization
This blog post is about IBM Cloud Watson Speech to Text (STT) language model customization. Currently I took a look at the IBM Cloud Watson Assistant service used to build conversational assistants. A conversation leads potentially to speech input of users, which needs to be converted to text to be processed using AI for example the NLU.
Bash scripting to ensure Kubernetes resources are deleted in synchronization
Sometimes we need to ensure that resources in Kubernetes are fully deleted before we setup other resources. In Kubernetes the timing and the synchronization can be very import and relevant. In that blog post we see a function of a bash script, that exactly does that job for namespaces. We are using a “for loop” combined with a nested “while loops” and other functionalities in bash to address that topic.
Map an existing user to a role in a Keycloak realm using CURL
In this blog post I want briefly show, how I implemented the mapping of a role to a user in Keycloak with CURL in a bash script.
Upload an user to Keycloak using CURL
In this blog post I want to briefly show, how I implemented the upload of an user to Keycloak with CURL in a bash script. I came across a helpful blog post (Keycloak REST API: Create a New User), but this blog post didn’t contain the information: How to set the password for the user?