IBM Mq Helm chart installation failed to create Pod showing "Crashloop Backoff error". Pod error Message: mkdir /mnt/mqm/data: permission denied. Infrastructure: Google Cloud Platform ,Kubectl version: Client Version: v1.18.6 Server Version: v1.16.13-gke.1. helm chart :helm repo add ibm-charts https://raw.githubusercontent.com/IBM/charts/master/repo/stable/
1 Answers
1
votes
This looks like an issue with permissions on the mounted volume. You can try resolving this by adding the following additional parameter when you do the helm install:
On CLI: --set security.initVolumeAsRoot=true
On UI: Select the check-box for initVolumeAsRoot
This will allow init-container to run as root and setup the filesystem, which can then be used by the queue manager.
security.initVolumeAsRoot
totrue
in Helm values. – h3yduck