Skip to content

Commit 59fa96e

Browse files
authored
Update README.md - update for the 8.12 Release
1 parent 9e5d64a commit 59fa96e

File tree

1 file changed

+6
-23
lines changed

1 file changed

+6
-23
lines changed

README.md

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ docker pull icr.io/cpopen/odm-k8s/odm
1212
# Quick reference
1313

1414
- **Where to get help**:
15-
* [ODM Documentation](https://www.ibm.com/docs/en/odm/8.11.1?topic=manager-introducing-operational-decision)
15+
* [ODM Documentation](https://www.ibm.com/docs/en/odm/8.12.0?topic=manager-introducing-operational-decision)
1616
* [IBM Business Automation Community](https://community.ibm.com/community/user/automation/communities/community-home?CommunityKey=c0005a22-520b-4181-bfad-feffd8bdc022)
1717

1818
- **Where to file issues**:
@@ -29,11 +29,8 @@ docker pull icr.io/cpopen/odm-k8s/odm
2929
[latest release](https://docs.docker.com/engine/release-notes/#201021) (down to Engine 20.10)
3030

3131
- **Rule Designer development environment for ODM developers**:
32-
33-
Available from the [Eclipse marketplace](https://marketplace.eclipse.org/content/ibm-operational-decision-manager-developers-v-8111x-rule-designer)
34-
35-
Use [IDE 2020-06 R (4.16) Modeling Tools Packages](https://www.eclipse.org/downloads/packages/release/2020-06/r). The update site is https://raw.githubusercontent.com/ODMDev/ruledesigner/8.11.1.0/p2
36-
32+
Available from the [Eclipse marketplace](https://marketplace.eclipse.org/content/ibm-operational-decision-manager-developers-v-812x-rule-designer)
33+
Use [IDE 2022-06 R (4.24) Modeling Tools Packages](https://www.eclipse.org/downloads/packages/release/2022-06/r). The update site is https://raw.githubusercontent.com/ODMDev/ruledesigner/8.12.0.0/p2
3734

3835
- **Sample projects**:
3936

@@ -59,19 +56,10 @@ docker pull icr.io/cpopen/odm-k8s/odm
5956

6057
- [Getting started with ODM for Developers Docker image](https://github.com/ODMDev/odm-for-dev-getting-started)
6158

62-
- [Creating a decision service in Rule Designer](https://www.ibm.com/support/knowledgecenter/en/SS7J8H/com.ibm.odm.cloud.tutorials/tut_cloud_ds_topics/odm_cloud_dservice_tut.html). For this tutorial, you need some knowledge of Java and the Eclipse workspaces, perspectives, and views. The following instructions supersede the prerequisites given in the tutorial documentation:
63-
64-
- Get Rule Designer from the Eclipse marketplace, as indicated at the beginning of this page.
65-
- Download the Miniloan sample project from the https://github.com/ODMDev/odm-for-dev-getting-started GitHub repository by clicking 'Clone or Code' and then 'Download ZIP'.
66-
- Extract its contents to a new directory. The tutorial later refers to this directory as `<InstallDir>/miniloanservice-projects`. The size of the download file is about 13 KB.
67-
- For Decision Server console and Decision Center Business console, use the URLs and the users/passwords provided in the table below on this page.
68-
69-
- [Getting started with decision modeling in the Business console](https://www.ibm.com/docs/en/odm/8.11.1?topic=tutorials-deprecated-getting-started-decision-modeling). For Decision Center Business console, use the URL and the user/password provided in the table below on this page.
70-
7159

7260
# Overview
7361

74-
The image in this repository contains IBM Operational Decision Manager for Developers based on the IBM Websphere Application Server Liberty for Developer image. See the license section below for restrictions on the use of this image. For more information about IBM Operational Decision Manager, see the [ODM Documentation](https://www.ibm.com/docs/en/odm/8.11.1?topic=manager-introducing-operational-decision) site.
62+
The image in this repository contains IBM Operational Decision Manager for Developers based on the IBM Websphere Application Server Liberty for Developer image. See the license section below for restrictions on the use of this image. For more information about IBM Operational Decision Manager, see the [ODM Documentation](https://www.ibm.com/docs/en/odm/8.12.0?topic=manager-introducing-operational-decision) site.
7563

7664

7765
# Usage
@@ -87,18 +75,14 @@ You must accept the license before you launch the image. The license is availabl
8775
To install the product with the sample projects, you need to specify the option -e SAMPLE=true. To be able to run simulations, you need to increase the size of the memory. Use the following docker command to run the image:
8876

8977
```console
90-
docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -m 2048M --memory-reservation 2048M -e SAMPLE=true icr.io/cpopen/odm-k8s/odm:8.11
78+
docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -m 2048M --memory-reservation 2048M -e SAMPLE=true icr.io/cpopen/odm-k8s/odm:8.12
9179
```
92-
> On some Docker version (Docker Engine 20.10.x) the memory management is different. You should run this command line:
93-
> docker run -e LICENSE=accept -p 9060:9060 -p 9443:9443 -e JVM_ARGS='-Xmx3000m' -e SAMPLE=true icr.io/cpopen/odm-k8s/odm:8.11
9480

9581
Some decision artifacts, like simulation definitions, version history, or snapshots, cannot be exported from the Decision Center or the Decision Server instances of the Docker image. To avoid losing this data when you delete the Docker image container, store the Decision Center and the Decision Server databases outside of the ODM for Developers Docker image container, in a local mounted host volume. To do so, run the following docker command from an empty local folder:
9682

9783
```console
98-
docker run -e LICENSE=accept -m 2048M --memory-reservation 2048M -p 9060:9060 -p 9443:9443 -v $PWD:/config/dbdata/ -e SAMPLE=false icr.io/cpopen/odm-k8s/odm:8.11
84+
docker run -e LICENSE=accept -m 2048M --memory-reservation 2048M -p 9060:9060 -p 9443:9443 -v $PWD:/config/dbdata/ -e SAMPLE=false icr.io/cpopen/odm-k8s/odm:8.12
9985
```
100-
> On some Docker version (Docker Engine 20.10.x) the memory management is different. You should run this command line:
101-
> docker run -e LICENSE=accept -e JVM_ARGS='-Xmx3000m' -p 9060:9060 -p 9443:9443 -v $PWD:/config/dbdata/ -e SAMPLE=false icr.io/cpopen/odm-k8s/odm:8.11
10286

10387
When you first run this command, it creates the .db files in your local folder. The following times, it reads and updates these files.
10488

@@ -123,4 +107,3 @@ When the server is started, use the URL http://localhost:9060 to display a welco
123107
**Note**: The IBM Operational Decision Manager for Developers license does not permit further distribution and the terms restrict usage to a developer machine.
124108

125109

126-

0 commit comments

Comments
 (0)