此内容没有您所选择的语言版本。
Chapter 7. Known issues in Red Hat Decision Manager 7.7.1
This section lists known issues with Red Hat Decision 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:
- Create a KIE application in the Red Hat Decision Manager environment on Red Hat OpenShift Container Platform using Operators.
- To deploy immutable KIE Server environments, use the following YAML file:
apiVersion: app.kiegroup.org/v2 kind: KieApp metadata: name: rhdm-production-immutable annotations: consoleName: rhdm-production-immutable consoleTitle: DM Production Immutable consoleDesc: Deploys a DM Production Immutable environment spec: environment: rhdm-production-immutable objects: servers: - build: kieServerContainerDeployment: rhdm-kieserver-hellorules=org.openshift.quickstarts:rhdm-kieserver-hellorules:1.5.0-SNAPSHOT gitSource: uri: https://github.com/jboss-container-images/rhdm-7-openshift-image.git reference: master contextDir: quickstarts/hello-rules/hellorules
apiVersion: app.kiegroup.org/v2
kind: KieApp
metadata:
name: rhdm-production-immutable
annotations:
consoleName: rhdm-production-immutable
consoleTitle: DM Production Immutable
consoleDesc: Deploys a DM Production Immutable environment
spec:
environment: rhdm-production-immutable
objects:
servers:
- build:
kieServerContainerDeployment: rhdm-kieserver-hellorules=org.openshift.quickstarts:rhdm-kieserver-hellorules:1.5.0-SNAPSHOT
gitSource:
uri: https://github.com/jboss-container-images/rhdm-7-openshift-image.git
reference: master
contextDir: quickstarts/hello-rules/hellorules
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:
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
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
Copy to Clipboard Copied! Unzip the
templates.zip
file content.unzip -q templates.zip
unzip -q templates.zip
Copy to Clipboard Copied! For an example, make the image build for MySQL database.
cd templates/contrib/jdbc make build mysql
cd templates/contrib/jdbc make build mysql
Copy to Clipboard Copied!
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"
name: "quay.io/kiegroup/jboss-kie-${DATABASE_TYPE}-extension-openshift-image"