mq-helm

Deploying the IBM MQ Helm Chart on RedHat OpenShift on IBM Power

The strategic deployment mechanism for IBM MQ on RedHat OpenShift is the IBM MQ Operator, the helm chart is only provided for customers who are unable to utilize the operator.

Pre-reqs

Prior to using the Helm chart you will need to install three dependencies:

  1. Helm version 3
  2. Kubectl
  3. OpenShift Command Line

Installation

  1. Log into the OpenShift Cluster using the oc command line. If you are unsure how to do this please consult here.
  2. Change directories to deploy: cd deploy
  3. Run the installation command to deploy an instance of the helm chart: ./install.sh <namespace>
    Where is the Kubernetes namespace where the resources should be deployed into. This will deploy a number of resources:
    • The IBM MQ Helm Chart using the properties within the ibmpower.yaml file.
    • A configMap with MQ configuration to define a default Queue, and the security required.
    • A secret that includes certificates and keys from the genericresources/createcerts directory. Assuring the communication in MQ is secure.
  4. This will take a minute or so to deploy, and the status can be checked with the following command: oc get pods | grep secureapp. Wait until one of the three Pods is showing 1/1 under the read status (only one will ever show this, the remainding two will be 0/1 showing they are replicas).

Testing

Navigate to ../test directory. No modifications should be required, as the endpoint configuration for your environment will be discovered automatically.

  1. To initiate the testing, run the ./sendMessage.sh command. It will then connect to MQ and start sending messages immediately.

  2. Open another terminal window and run the ./getMessage.sh command. You should see all of the messages being sent by the sendMessaging command.

  3. You can clean up the resources by navigating to the ../deploy directory and running the command ./cleanup.sh. This will delete everything. Do not worry if you receive messages about PVCs not being found, this is a generic clean-up script and assumes a worst case scenario.