Skip to content

Commit 4535f7e

Browse files
authored
change following review
1 parent 59e2a38 commit 4535f7e

File tree

1 file changed

+15
-18
lines changed

1 file changed

+15
-18
lines changed

platform/eks/README.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Then, create an [AWS Account](https://aws.amazon.com/getting-started/).
2929

3030
1. [Prepare your environment (40 min)](#1-prepare-your-environment-40-min)
3131
2. [Prepare your environment for the ODM installation (25 min)](#2-prepare-your-environment-for-the-odm-installation-25-min)
32-
3. [(Optional) Create an RDS database (Optional 20 min)](#3-optional-create-an-rds-database-20-min)
32+
3. [Create an RDS database (Optional 20 min)](#3-create-an-rds-database-20-min)
3333
4. [Manage a  digital certificate (10 min)](#4-manage-a-digital-certificate-10-min)
3434
5. [Install an ODM release (10 min)](#5-install-an-ibm-operational-decision-manager-release-10-min)
3535
6. [Access the ODM services](#6-access-the-odm-services)
@@ -137,12 +137,7 @@ NAME CHART VERSION APP VERSION DESCRIPTION
137137
ibmcharts/ibm-odm-prod 22.1.0 8.11.0.1 IBM Operational Decision Manager
138138
```
139139

140-
### 3. (Optional) Create an RDS database (20 min)
141-
142-
ODM on K8s is provided with a ready to use internal database based on PostgreSQL that can be used empty or with pre-populated samples.
143-
If you want to install an ODM demo quickly, you can use this internal database.
144-
145-
But, if you prefer to be more on a entreprise mode, follow the next step explaining how to use an AWS RDS database.
140+
### 3. Create an RDS database (20 min)
146141

147142
This following step is using PostgreSQL but the procedure is valid for any database supported by ODM.
148143

@@ -172,6 +167,9 @@ kubectl create secret generic odm-db-secret \
172167
--from-literal=db-password=postgres
173168
```
174169

170+
> NOTE: ODM on K8s is provided with a ready to use internal database based on PostgreSQL that can be used empty or with pre-populated samples.
171+
If you want to install an ODM demo quickly, you can use this internal database. This internal database is dedicated to prototyping, not for production.
172+
175173
### 4. Manage a  digital certificate (10 min)
176174

177175
#### a. (Optional) Generate a self-signed certificate
@@ -212,27 +210,26 @@ The output of the command is:
212210

213211
Install a Kubernetes release with the default configuration and a name of `mycompany`.
214212

215-
If you want to install ODM as a demo mode with the ODM postgreSQL internal data base :
216-
217-
- Get the [eks-values.yaml](./eks-values.yaml) file and replace the following keys:
218-
- `<AWS-AccountId>` is your AWS Account Id
219-
220-
```bash
221-
helm install mycompany ibmcharts/ibm-odm-prod --version 22.1.0 -f eks-values.yaml
222-
```
223-
224-
If you want to install ODM with the AWS RDS postgreSQL database created in [step 3](#3-optional-create-an-rds-database-20-min) :
213+
To install ODM with the AWS RDS postgreSQL database created in [step 3](#3-optional-create-an-rds-database-20-min) :
225214

226215
- Get the [eks-rds-values.yaml](./eks-rds-values.yaml) file and replace the following keys:
227216
- `<AWS-AccountId>` is your AWS Account Id
228217
- `<RDS_DB_ENDPOINT>` is your database server endpoint (of the form: `db-server-name-1.********.<region>.rds.amazonaws.com`)
229218
- `<RDS_DATABASE_NAME>` is the initial database name defined when creating the RDS database
230219

231-
232220
```bash
233221
helm install mycompany ibmcharts/ibm-odm-prod --version 22.1.0 -f eks-rds-values.yaml
234222
```
235223

224+
> NOTE: If you prefer to install ODM to prototype (not for production purpose) with the ODM PostgreSQL internal database :
225+
>
226+
> - Get the [eks-values.yaml](./eks-values.yaml) file and replace the following keys:
227+
> - `<AWS-AccountId>` is your AWS Account Id
228+
>
229+
>```bash
230+
>helm install mycompany ibmcharts/ibm-odm-prod --version 22.1.0 -f eks-values.yaml
231+
>```
232+
236233
> NOTE: If you choose to use the NGINX Ingress Controller, refer to [Install an ODM release with NGINX Ingress Controller](README-NGINX.md#install-an-odm-release-with-nginx-ingress-controller).
237234
238235

0 commit comments

Comments
 (0)