Chapter 7. Known issues in Red Hat Process Automation Manager 7.7.1

This section lists known issues with Red Hat Process Automation Manager 7.7.1.

7.1. Red Hat OpenShift Container Platform

You can not deploy immutable KIE Server environments on Red Hat OpenShift Container Platform using Operators [RHPAM-2942]

Issue: Immutable KIE Server environments are unable to deploy on Red Hat OpenShift Container Platform using Operators.

Steps to reproduce:

  1. Create a KIE application in the Red Hat Process Automation Manager environment on Red Hat OpenShift Container Platform using Operators.
  2. To deploy immutable KIE Server environments, use the following YAML file:
apiVersion: app.kiegroup.org/v2
kind: KieApp
metadata:
  name: rhpam-production-immutable
  annotations:
    consoleName: rhpam-production-immutable
    consoleTitle: PAM Production Immutable
    consoleDesc: Deploys a PAM Production Immutable environment
spec:
  environment: rhpam-production-immutable
  useImageTags: true
  objects:
    servers:
      - build:
          kieServerContainerDeployment: rhpam-kieserver-library=org.openshift.quickstarts:rhpam-kieserver-library:1.6.0-SNAPSHOT
          gitSource:
            uri: https://github.com/jboss-container-images/rhpam-7-openshift-image.git
            reference: master
            contextDir: quickstarts/library-process

Expected result: Immutable KIE Server deployment errors must not be present in the generated YAML file.

Actual result: The generated YAML file fails with the immutable KIE Server deployment errors.

Workaround: For successful KIE Server deployment on Red Hat OpenShift Container Platform using Operators, use useImageTags flag.

You can not create custom image for database [RHPAM-2948]

Issue: It is not possible to build a custom extension image for database.

Steps to reproduce:

  1. Download the following templates.zip file.

    curl --insecure --output templates.zip http://rcm-guest.app.eng.bos.redhat.com/rcm-guest/staging/rhpam/RHPAM-7.7.1.CR1/rhpam-7.7.1-openshift-templates.zip
  2. Unzip the templates.zip file content.

    unzip -q templates.zip
  3. For an example, make the image build for MySQL database.

    cd templates/contrib/jdbc
    make build mysql

Expected result: You can create and build a custom extension image for database.

Actual result: You can not build a custom extension image for database.

Workaround: Specify the following repository in the base-db-overrides.yaml file and restart the image build.

name: "quay.io/kiegroup/jboss-kie-${DATABASE_TYPE}-extension-openshift-image"