You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After a few minutes, the command completes and returns JSON-formatted information about the cluster. Make a note of the newly-created Resource Group that is displayed in the JSON output (e.g. "nodeResourceGroup": "<noderesourcegroup>") if you have to tag it, for example:
@@ -158,7 +157,7 @@ To get a good bandwidth between ODM containers and the database, choose the same
158
157
```shell
159
158
az postgres server create --name <postgresqlserver> --resource-group <resourcegroup> \
You can then open a browser on https://xxx.xxx.xxx.xxx:9453 to access Decision Center, and on https://xxx.xxx.xxx.xxx:9443 to access Decision Server console, Decision Server Runtime, and Decision Runner.
358
357
<!-- markdown-link-check-enable -->
358
+
359
359
## Create an NGINX Ingress controller
360
360
361
361
Installing an NGINX Ingress controller allows you to access ODM components through a single external IP address instead of the different IP addresses as seen above. It is also mandatory to retrieve license usage through the IBM License Service.
> Note: The version will probably change after the publication of our documentation so please refer to the actual [documentation](https://kubernetes.github.io/ingress-nginx/deploy/#azure)!
370
370
371
371
2. Get the Ingress controller external IP address (it will appear 80 seconds or so after the resource application above):
372
372
373
373
```shell
374
-
kubectl get service -l app.kubernetes.io/name=ingress-nginx -n ingress-nginx
374
+
kubectl get service --selector app.kubernetes.io/name=ingress-nginx --namespace ingress-nginx
After a couple of minutes, the NGINX load balancer reflects the Ingress configuration and you will be able to access the IBM License Service by retrieving the URL with this command:
You can access the `http://${LICENSING_URL}/status?token=${TOKEN}` URL to view the licensing usage, or retrieve the licensing report .zip file by running:
If your IBM License Service instance is not running properly, refer to this [troubleshooting page](https://www.ibm.com/docs/en/cpfs?topic=software-troubleshooting).
0 commit comments