@@ -141,12 +141,6 @@ aks-nodepool1-26476812-vmss000000 Ready agent 21m v1.25.6
141
141
aks-nodepool1-26476812-vmss000001 Ready agent 21m v1.25.6
142
142
```
143
143
144
- To further debug and diagnose cluster problems, run the following command:
145
-
146
- ``` shell
147
- kubectl cluster-info dump
148
- ```
149
-
150
144
## Create the PostgreSQL Azure instance (10 min)
151
145
152
146
### Create an Azure Database for PostgreSQL
@@ -221,6 +215,15 @@ az postgres server firewall-rule create --resource-group <resourcegroup> --serve
221
215
--name < rule> --start-ip-address 0.0.0.0 --end-ip-address 255.255.255.255
222
216
```
223
217
218
+ ### Create the database credentials secret for Azure PostgreSQL
219
+
220
+ To secure the access to the database, create a secret that encrypts the database user and password before you install the Helm release.
221
+
222
+ ``` shell
223
+ kubectl create secret generic < odmdbsecret> --from-literal=db-user=myadmin@< postgresqlserver> \
224
+ --from-literal=db-password=' passw0rd!'
225
+ ```
226
+
224
227
## Prepare your environment for the ODM installation
225
228
226
229
To get access to the ODM material, you must have an IBM entitlement key to pull the images from the IBM Entitled Registry.
@@ -265,15 +268,6 @@ NAME CHART VERSION APP VERSION DESCRIPTION
265
268
ibmcharts/ibm-odm-prod 23.2.0 8.12.0.1 IBM Operational Decision Manager License By in...
266
269
```
267
270
268
- ### Create the database credentials secret for Azure PostgreSQL
269
-
270
- To secure the access to the database, create a secret that encrypts the database user and password before you install the Helm release.
271
-
272
- ``` shell
273
- kubectl create secret generic < odmdbsecret> --from-literal=db-user=myadmin@< postgresqlserver> \
274
- --from-literal=db-password=' passw0rd!'
275
- ```
276
-
277
271
### Manage a digital certificate (10 min)
278
272
279
273
1 . (Optional) Generate a self-signed certificate.
@@ -309,7 +303,7 @@ az aks update --name <cluster> --resource-group <resourcegroup> --load-balancer-
309
303
You can now install the product:
310
304
311
305
``` shell
312
- helm install < release> ibmcharts/ibm-odm-prod --version 23.1 .0 \
306
+ helm install < release> ibmcharts/ibm-odm-prod --version 23.2 .0 \
313
307
--set image.repository=cp.icr.io/cp/cp4a/odm --set image.pullSecrets=< registrysecret> \
314
308
--set image.arch=amd64 --set image.tag=${ODM_VERSION:- 8.12.0.1} --set service.type=LoadBalancer \
315
309
--set externalDatabase.type=postgres \
0 commit comments