Skip to content

Commit e8856c7

Browse files
committed
update instruction for applying licensing 4.9
1 parent 48c173c commit e8856c7

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

platform/eks/README.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -290,27 +290,37 @@ The ODM services are accessible from the following URLs:
290290

291291
#### a. Install the IBM License Service
292292

293-
Follow the **Installation** section of the [Manual installation without the Operator Lifecycle Manager (OLM)](https://www.ibm.com/docs/en/cpfs?topic=software-manual-installation-without-operator-lifecycle-manager-olm) documentation.
293+
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.9?topic=ils-installing-license-service-without-operator-lifecycle-manager-olm) documentation.
294294

295-
> **Warning**
296-
> Make sure you do not follow the **Creating an IBM Licensing instance** part!
297-
298-
#### b. Create the IBM Licensing instance
295+
#### b. Patch the IBM Licensing instance
299296

300297
Get the [licensing-instance.yaml](./licensing-instance.yaml) file and run the command:
301298

302299
```bash
303-
kubectl create -f licensing-instance.yaml
300+
kubectl patch IBMLicensing instance --type merge --patch-file licensing-instance.yaml -n ibm-licensing
304301
```
305302

306-
You can find more information and use cases on [this page](https://www.ibm.com/docs/en/cpfs?topic=software-configuration).
303+
Wait a couple of minutes for the changes to be applied.
304+
305+
Run the following command to see the status of Ingress instance:
306+
307+
```bash
308+
kubectl get ingress -n ibm-licensing
309+
```
310+
311+
You should be able to see the address and other details about `ibm-licensing-service-instance`.
312+
```
313+
NAME CLASS HOSTS ADDRESS PORTS AGE
314+
ibm-licensing-service-instance alb * k8s-ibmlicen-ibmlicen-xxxxxxxx-yyyyyyy.<aws-region>.elb.amazonaws.com 80 44m
315+
```
316+
You can find more information and use cases on [this page](https://www.ibm.com/docs/en/cloud-paks/foundational-services/4.9?topic=configuration-configuring-kubernetes-ingress).
307317

308318
> **Note**
309319
> 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).
310320
311321
#### c. Retrieving license usage
312322

313-
After a couple of minutes, the ALB reflects the Ingress configuration. You will be able to access the IBM License Service by retrieving the URL with this command:
323+
The ALB address should be reflected in the Ingress configuration. You will be able to access the IBM License Service by retrieving the URL with this command:
314324

315325
```bash
316326
export LICENSING_URL=$(kubectl get ingress ibm-licensing-service-instance -n ibm-licensing -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')

0 commit comments

Comments
 (0)