Kubernetes ConfigMaps with TIBCO BusinessWorks Container Edition

While recently demonstrating BWCE, I realized that rather than using Consul, I could easily use native K8s concepts. I was already using Kubernetes services instead of the Consul Service Discovery (because its just so cool!). I decided to read a bit on ConfigMaps and realized its really easy and with the new features added in BWCE Studio, I can externalize configuration very easily. So let’s begin.

I am using the Bookstore sample shipped with BWCE. The only changes I did there was to create a new profile (by clicking the New Profile button) and names it k8s. After which I clicked the Export Profile button which tokenized my profile correctly and created a properties file. Screenshots below:

Export Wizard
Auto Tokenized K8s Profile!

You will need to add the below line to your properties file as well:
BW_PROFILE=k8s
With this done the only part left was to create a configmap with the below command:
kubectl create configmap bookstore-config --from-env-file=k8sprofile.properties

Create a docker image of the bookstore demo and push it to the right registry (I have used minikube). After which just type the magic command of
kubectl apply -f bookstore-demo.yaml

With this done the only part left was to create a configmap with the below command:
kubectl create configmap bookstore-config --from-env-file=k8sprofile.properties

Create a docker image of the bookstore demo and push it to the right registry (I have used minikube). After which just type the magic command of
kubectl apply -f bookstore-demo.yaml

If all goes well you should see this in your pod logs:

Quick and easy way to read values from configMaps

And that’s it! You have successfully used ConfigMaps to externalize your values with just a few clicks. All the artifacts are checked in on Github here.

Happy Exploring Cloud Native. Next step, Linkerd!

1 thought on “Kubernetes ConfigMaps with TIBCO BusinessWorks Container Edition”

  1. Pingback: Using Linkerd with TIBCO BusinessWorks Container Edition – Blinking Cursor

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top