Skip to content

Commit 80d0139

Browse files
authored
Update README-NGINX.md
1 parent c6a3607 commit 80d0139

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

platform/eks/README-NGINX.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,23 @@ You can then go back to the [main documentation](README.md#2-prepare-your-enviro
3838
You just have to replace during the helm install **eks-values.yaml** by **eks-nginx-values.yaml** that contains the relevant ingress annotations :
3939
`kubernetes.io/ingress.class: nginx` and `nginx.ingress.kubernetes.io/backend-protocol: https`
4040

41+
If you want to install ODM as a demo mode with the ODM postgreSQL internal data base :
42+
43+
- Get the [eks-nginx-values.yaml](./eks-nginx-values.yaml) file and replace the following keys:
44+
- `<AWS-AccountId>` is your AWS Account Id
45+
46+
```bash
47+
helm install mycompany ibmcharts/ibm-odm-prod --version 22.1.0 -f eks-nginx-values.yaml
48+
```
49+
50+
If you want to install ODM with the AWS RDS postgreSQL database created in [step 3](#3-optional-create-an-rds-database-20-min) :
51+
52+
- Get the [eks-rds-nginx-values.yaml](./eks-rds-nginx-values.yaml) file and replace the following keys:
53+
- `<AWS-AccountId>` is your AWS Account Id
54+
- `<RDS_DB_ENDPOINT>` is your database server endpoint (of the form: `db-server-name-1.********.<region>.rds.amazonaws.com`)
55+
- `<RDS_DATABASE_NAME>` is the initial database name defined when creating the RDS database
56+
57+
4158
```bash
42-
helm install mycompany ibmcharts/ibm-odm-prod --version 22.1.0 \
43-
--set image.repository=cp.icr.io/cp/cp4a/odm \
44-
-f eks-nginx-values.yaml
59+
helm install mycompany ibmcharts/ibm-odm-prod --version 22.1.0 -f eks-rds-nginx-values.yaml
4560
```

0 commit comments

Comments
 (0)