I don't think I have the time to dive into that right now though I will add it to my list of things to explore. I did get 9.2 up and running. I learned a bunch from troubleshooting in openshift but had more success just starting the install from scratch after errors. It's frustrating that any DB configuration issues don't show up until like an hour into the install.
Thanks again for the help.
Original Message:
Sent: 07-13-2026 16:43
From: FREDRICK NDWARU
Subject: rhm-data-service pod error on mas install - single node
Hi Andy,
Since the previous storage class adjustments didn't clear the block on your new SNO installation, I looked into the official IBM Maximo Application Suite organization repositories to see what else could be causing this.
I found that IBM maintains a specific maf-local-dev-mode repository within their official GitHub (github.com/ibm-mas). When the standard container toolchain fails to bind or apply properties properly on restricted single-node storage layers, utilizing this alternative local development mode is the documented path to bypass those image structure limitations.
Since I don't have a live SNO environment to test this myself, could you check the configuration parameters inside that local development mode on your server to see if it allows you to bypass the tool lock? Let me know if that repository sheds any light on the issue. Hope it helps.
------------------------------
[Fredrick] [Ndwaru]
[Perpetual Ignition]
------------------------------
Original Message:
Sent: 07-06-2026 19:08
From: Andrew Meuse
Subject: rhm-data-service pod error on mas install - single node
Hi Frederick,
Thanks for the great reply. I tried modifying the storageclass but openshift wouldn't let me. I installed a new SNO and tried with the same results. I then tried deleting the storageclass to then recreate it but it wouldn't let me do that either. Using the interactive install with MAS CLI I chose those storage classes for RWO and RWX and that worked. I had tried both with managed-csi previously but it doesn't like that for the RWX.
Also, thanks for including those links at the bottom. They were very helpful in learning more about the install process.
------------------------------
Thanks,
Andy
------------------------------
Original Message:
Sent: 07-03-2026 17:50
From: FREDRICK NDWARU
Subject: rhm-data-service pod error on mas install - single node
Hi Andy,
This is actually an Azure storage infrastructure constraint rather than a traditional external database connectivity issue (like Db2 or SQL Server).
The rhm-data-service pod (Red Hat Marketplace data service) utilizes a local, file-backed SQLite/embedded metadata store (.info.yaml) to cache license entitlement keys and airgap state data. During the pod's initialization lifecycle, the internal Go binary attempts to execute a standard Linux chmod operation to secure permissions on that folder structure. [2]
If your Single Node OpenShift (SNO) cluster is dynamically provisioning persistent volumes using the azurefile-csi (Azure Files via SMB/CIFS) storage class, this execution fails. By default, SMB layers mounted into unprivileged, non-root containers do not support standard POSIX chmod/chown semantics, throwing the exact operation not permitted crash loop you are experiencing.
Depending on whether you are running a manual install or using an automated framework, here are the paths to clear the error:
Solution Path A: If Using Automated Helper Utilities (mas-cli)
If you are leveraging the automated
IBM Maximo Application Suite CLI utility (
mas-cli engine) to dynamically spin up your deployment components, the automated installer attempts to match workloads with appropriate defaults.
[3, 4] You can explicitly override storage providers globally during non-interactive installations by supplying flags to separate file systems from block devices. Instead of feeding azurefile-csi universally, explicitly target the block layer for read-write-once (RWO) operator caches: [1, 3, 5]
# Force operational metrics to rely strictly on Azure Disk Block Storage --storage-rwo managed-csi \--storage-rwx azurefile-csi
This maps the data service pods to an underlying block architecture that natively permits file modifications.
Solution Path B: Direct azurefile-csi StorageClass Customization
If you prefer to continue backing your operators with Azure Files, you must configure the storage provisioner to mask and bypass remote container permission enforcement.
⚠️ Disclaimer: Please validate this modification in a sandbox or staging context before applying it universally to standard multi-node production storage manifests. Bypassing volume permission validations entirely (noperm) can alter security expectations depending on tenant multi-occupancy structures.
To speed up execution, you can run this single-line patch script to inject the required noperm parameter into your dynamic cluster configuration:
# 1. Patch the storage class with required CIFS execution overridesoc patch storageclass azurefile-csi --type='json' -p='[{"op": "add", "path": "/mountOptions", "value": ["noperm", "mfsymlinks", "actimeo=30"]}]'# 2. Cycle the crashing metrics collector pod to bind with new mount policiesoc delete pod -l app=rhm-data-service -n ibm-software-central
What this script alters under the hood:
The JSON patch modifies your standard azurefile-csi manifest definition directly:
apiVersion: storage.k8s.io/v1kind: StorageClassmetadata: name: azurefile-csiprovisioner: ://azure.commountOptions: - noperm # Tells the mount layer to skip remote client chmod/chown verification - mfsymlinks # Retains support for Unix symbolic links on the file share - actimeo=30 # Adjusts attribute caching timers for optimized cluster communication
Once the pod recycles with the noperm mount rule, the Go application will complete its internal file check operations successfully and allow the rest of your MAS operator platform chain to deploy seamlessly.
Let us know if dropping in the automation flags or running the storage class patch clears the block on your Azure SNO node!
Let me know if you would like to expand on specific namespace contexts for the metrics operator or require additional scripts for verification!
Please see the sources used to answer your question
------------------------------
[Fredrick] [Ndwaru]
[Perpetual Ignition]
------------------------------