IBM QRadar

IBM QRadar

Join this online user group to communicate across Security product users and IBM experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only

Deploying IBM QRadar on OpenShift

By Tamil Selvam R posted 5 hours ago

  

Deploying IBM QRadar on OpenShift

This guide walks you through deploying the IBM QRadar virtual appliance on Red Hat OpenShift using OpenShift Virtualization.

1. Enable OpenShift Virtualization

  1. Log in to the OpenShift Console.
  2. From the left-side menu, expand Operators and click OperatorHub.

A screenshot of a computer

AI-generated content may be incorrect.

  1. Search for Virtualization.
  2. Select OpenShift Virtualization from the list.

A screenshot of a computer

AI-generated content may be incorrect.

  1. Click Install, then confirm by clicking Install again on the next screen.

A screenshot of a computer

AI-generated content may be incorrect.

A screenshot of a computer

AI-generated content may be incorrect.

  1. Once installed, click Create HyperConverged.

A screenshot of a computer

AI-generated content may be incorrect.

  1. On the HyperConverged setup page, scroll down and leave the default values. Click Create.

A screenshot of a computer

AI-generated content may be incorrect.

  1. The screen will refresh twice, and you’ll notice a new Virtualization section in the left menu.

A screenshot of a computer

AI-generated content may be incorrect.

2. Create the Virtual Machine

  1. Navigate to Virtualization > VirtualMachines.
  2. Click Create VirtualMachine and choose From Template.

A screenshot of a computer

AI-generated content may be incorrect.

  1. On the template selection page, search for Red Hat.

A screenshot of a computer

AI-generated content may be incorrect.

  1. Select Red Hat Enterprise Linux 8 from the list.

3. Configure the VM for QRadar Installation

  1. On the VM configuration page, apply the following settings:
    • Boot from CD → Check the box.
    • CD Source → Select Upload (Upload a new file to PVC).
    • Upload Data → Browse and upload the QRadar ISO file.
    • Disk Size for CD-ROM → Provide an appropriate size.
    • Disk Source → Leave as Blank.
    • Disk Size → Allocate the required disk space for QRadar installation (refer to system requirements).
    • CPU & Memory → Configure as per the QRadar Virtual Appliance System Requirements.
  2. Click Customize VirtualMachine to review settings.

A screenshot of a computer

AI-generated content may be incorrect.

  1. Finally, click Create VirtualMachine.

A screenshot of a computer

AI-generated content may be incorrect.

4. Start the Installation

  1. Once the VM is created and its status changes to Running, the QRadar installation will begin automatically.
  2. Click Open Web Console to access the installation interface.

A screenshot of a computer

AI-generated content may be incorrect.

  1. Select Red Hat Enterprise Linux 8.10 from the boot menu.

This will first install the OS bundled with the ISO, followed by the QRadar application itself.

A screen shot of a computer

AI-generated content may be incorrect.

  1. Accept the License Agreement by typing yes and pressing Enter.

A screenshot of a computer

AI-generated content may be incorrect.

5. Configure QRadar Installation

  1. On the Appliance Installation screen:
    • Select Appliance Install → Press Next.
    • Use Tab to move between options, and Space to select.

A computer screen with a program

AI-generated content may be incorrect.

  1. Choose the appliance type (e.g., All-In-One Console – 3199).

A computer screen with a blue screen

AI-generated content may be incorrect.

  1. Select Normal Setup and continue.

A computer screen with a program

AI-generated content may be incorrect.

  1. Configure:
    • Time Zone
    • IP Protocol (IPv4/IPv6)
    • Network Interfaces
    • Static IP details (including Hostname / FQDN)

A computer screen with a blue and white screen

AI-generated content may be incorrect.

A computer screen with a blue box

AI-generated content may be incorrect.

A computer screen with a blue and green box

AI-generated content may be incorrect.

For All-In-One deployments, this IP and hostname will be used to access both the QRadar Console and CLI.

  1. Set:
    • Admin password (for Console login)
    • Root password (for CLI access)

A computer screen with a login password

AI-generated content may be incorrect.

A computer screen with a login screen

AI-generated content may be incorrect.

  1. Click Finish to complete the installation.
  2. Once complete, you’ll see a confirmation message. Select OK.

A screenshot of a computer

AI-generated content may be incorrect.

6. Expose QRadar Outside OpenShift

  1. In the OpenShift Console, go back to your VirtualMachine details.
  2. Click the + (plus) icon on the top right and select Import YAML.
  3. Import the YAML configuration to create a Route for external access.
  4. Click Create.

    Create a Service to Expose the VM's Port
    apiVersion: v1
    kind: Service
    metadata:
    name: qradar-service
    namespace: openshift-cnv # Must be in the same namespace as the VMI
    spec:
    ports:
    - name: https
    port: 443 # The port the Service will listen on
    targetPort: 443 # The port on the VMI/Pod to forward traffic to
    protocol: TCP
    selector:
    kubevirt.io/domain: rhel8-azure-raven-81 # This targets the VMI's Pod rhel8-black-ant-63

    Create a Route for External Access
    apiVersion: route.openshift.io/v1
    kind: Route
    metadata:
    name: qradar-route
    namespace: openshift-cnv # Must be in the same namespace as the Service
    spec:
    to:
    kind: Service
    name: qradar-service # The name of the Service we created
    weight: 100
    port:
    targetPort: https # Must match the 'name' of the port in the Service
    tls:
    termination: passthrough # Best for HTTPS services where the VM holds the cert

    Access Your QRadar VM Get the Route's hostname:

    oc get route -n openshift-cnv qradar-route -o jsonpath='{.spec.host}'

7. Access QRadar Console

  1. From your local machine, open the QRadar Console using the route you just configured.
  2. Log in with the admin credentials created earlier.
  3. Accept the QRadar License Agreement.
  4. The QRadar Console will now be available with a 30-day trial license.

You have successfully deployed QRadar on OpenShift!

Next Steps

  • Configure log sources and start monitoring.
  • Review QRadar’s integration with your security stack.
  • Apply permanent licenses if moving beyond trial mode.

Disclaimer
This deployment guide is provided as an innovative reference for testing and learning purposes. It does not represent an official IBM product or supported deployment model.Users are encouraged to validate configurations in a controlled environment before applying them to production systems. 

https://www.ibm.com/docs/en/qsip/7.5?topic=vai-creating 

Happy Monitoring with IBM QRadar on OpenShift!

0 comments
7 views

Permalink