Skip to content

Commit 79181df

Browse files
committed
update readme pertaining to nginx 1.12.1 and odm 9.5
1 parent bdd43b6 commit 79181df

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

platform/azure/README-NGINX.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Installing an NGINX Ingress controller allows you to access ODM components throu
1616
1. Use the official YAML manifest:
1717

1818
```shell
19-
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.12.0-beta.0/deploy/static/provider/cloud/deploy.yaml
19+
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.12.1/deploy/static/provider/cloud/deploy.yaml
2020
```
2121

2222
> [!NOTE]
@@ -54,11 +54,11 @@ You can now install the product.
5454
- `<password>` is the password to login with the basic registry users like `odmAmin`
5555

5656
```shell
57-
helm install <release> ibmcharts/ibm-odm-prod --version 24.1.0 -f aks-nginx-values.yaml
57+
helm install <release> ibm-helm/ibm-odm-prod --version 25.0.0 -f aks-nginx-values.yaml
5858
```
5959

6060
> [!NOTE]
61-
> By default, the NGINX Ingress controller does not enable sticky session. If you want to use sticky session to connect to DC, refer to [Using sticky session for Decision Center connection](../../contrib/sticky-session/README.md)
61+
> By default, the NGINX Ingress controller does not enable sticky session. If you want to use sticky session to connect to DC, refer to [Using sticky session for Decision Center connection](../../contrib/sticky-session/README.md#configuring-ingress-to-use-sticky-sessions)
6262

6363

6464
### Edit the file /etc/hosts on your host
@@ -101,7 +101,7 @@ Where:
101101

102102
This section explains how to track ODM usage with the IBM License Service.
103103

104-
Follow the **Installation** section of the [Manual installation without the Operator Lifecycle Manager (OLM)](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.9?topic=ils-installing-license-service-without-operator-lifecycle-manager-olm) documentation.
104+
Follow the **Installation** section of the [Manual installation without the Operator Lifecycle Manager (OLM)](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.12.0?topic=ilsfpcr-installing-license-service-without-operator-lifecycle-manager-olm) documentation.
105105

106106
### Patch the IBM Licensing instance with Nginx configuration
107107

@@ -140,7 +140,7 @@ Otherwise, you can also retrieve the licensing report .zip file by running:
140140
curl "http://${LICENSING_URL}/snapshot?token=${TOKEN}" --output report.zip
141141
```
142142

143-
If your IBM License Service instance is not running properly, refer to this [troubleshooting page](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.9?topic=service-troubleshooting-license).
143+
If your IBM License Service instance is not running properly, refer to this [troubleshooting page](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.12.0?topic=service-troubleshooting-license).
144144

145145
## Troubleshooting
146146

platform/azure/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ You can then open a browser on `https://xxx.xxx.xxx.xxx:9453` to access Decision
413413

414414
This section explains how to track ODM usage with the IBM License Service.
415415

416-
Follow the **Installation** section of the [Installation License Service without Operator Lifecycle Manager (OLM)](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.11.0?topic=ilsfpcr-installing-license-service-without-operator-lifecycle-manager-olm) documentation.
416+
Follow the **Installation** section of the [Installation License Service without Operator Lifecycle Manager (OLM)](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.12.0?topic=ilsfpcr-installing-license-service-without-operator-lifecycle-manager-olm) documentation.
417417

418418
#### a. Expose the licensing service using the AKS LoadBalancer
419419

@@ -442,7 +442,7 @@ kubectl patch IBMLicensing instance --type merge --patch-file licensing-instance
442442

443443
Wait a couple of minutes for the changes to be applied.
444444

445-
You can find more information and use cases on [this page](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.11.0?topic=configuring-kubernetes-ingress).
445+
You can find more information and use cases on [this page](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.12.0?topic=configuring-kubernetes-ingress).
446446

447447
> **Note**
448448
> If you choose to use the NGINX Ingress Controller, you must use the [licensing-instance-nginx.yaml](./licensing-instance-nginx.yaml) file. Refer to [Track ODM usage with the IBM License Service with NGINX Ingress Controller](README-NGINX.md#track-odm-usage-with-the-ibm-license-service-with-nginx-ingress-controller).
@@ -457,15 +457,15 @@ export TOKEN=$(kubectl get secret ibm-licensing-token -n ibm-licensing -o jsonpa
457457
```
458458

459459
> **Note**
460-
> If `LICENSING_URL` is empty, take a look at the [troubleshooting](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.11.0?topic=service-troubleshooting-license) page.
460+
> If `LICENSING_URL` is empty, take a look at the [troubleshooting](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.12.0?topic=service-troubleshooting-license) page.
461461
462462
You can access the `http://${LICENSING_URL}:8080/status?token=${TOKEN}` URL to view the licensing usage or retrieve the licensing report .zip file by running:
463463

464464
```shell
465465
curl "http://${LICENSING_URL}:8080/snapshot?token=${TOKEN}" --output report.zip
466466
```
467467

468-
If your IBM License Service instance is not running properly, refer to this [troubleshooting page](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.11.0?topic=service-troubleshooting-license).
468+
If your IBM License Service instance is not running properly, refer to this [troubleshooting page](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.12.0?topic=service-troubleshooting-license).
469469

470470
## Troubleshooting
471471

platform/azure/licensing-instance-nginx.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
httpsEnable: false
99
ingressEnabled: true
1010
ingressOptions:
11+
ingressClassName: nginx
1112
annotations:
12-
kubernetes.io/ingress.class: nginx
1313
nginx.ingress.kubernetes.io/rewrite-target: '/$2'
1414
path: /ibm-licensing-service-instance(/|$)(.*)

0 commit comments

Comments
 (0)