Skip to content

Commit 4b27b7b

Browse files
committed
Updated TLS secret name
1 parent 118737b commit 4b27b7b

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

platform/gcloud/README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ openssl req -x509 -nodes -days 1000 -newkey rsa:2048 -keyout mynicecompany.key \
227227
#### b. Create a TLS secret with these keys
228228

229229
```shell
230-
kubectl create secret tls mynicecompany-crt-secret --key mynicecompany.key --cert mynicecompany.crt
230+
kubectl create secret tls mynicecompany-tls-secret --key mynicecompany.key --cert mynicecompany.crt
231231
```
232232

233233
The certificate must be the same as the one you used to enable TLS connections in your ODM release. For more information, see [Server certificates](https://www.ibm.com/docs/en/odm/9.0.0?topic=servers-server-certificates) and [Working with certificates and SSL](https://docs.oracle.com/cd/E19830-01/819-4712/ablqw/index.html).
@@ -342,16 +342,17 @@ We only have to manage a configuration to simulate the mynicecompany.com access.
342342
| Decision Runner | <https://mynicecompany.com/DecisionRunner> | odmAdmin/odmAdmin
343343
<!-- markdown-link-check-enable -->
344344

345-
> NOTE:You can also click the Ingress routes accessible from the Google Cloud console under the [Kubernetes Engine/Services & Ingress Details Panel](https://console.cloud.google.com/kubernetes/ingresses).
346-
> <img width="1000" height="532" src='./images/ingress_routes.png'/>
345+
> [!NOTE]
346+
> You can also click the Ingress frontends accessible from the Google Cloud console under the [Kubernetes Engine/Services & Ingress Details Panel](https://console.cloud.google.com/kubernetes/ingresses).
347+
> ![Ingress routes](images/ingress_routes.png)
347348
348349
### 7. Track ODM usage with the IBM License Service
349350

350351
This section explains how to track ODM usage with the IBM License Service.
351352

352353
#### a. Install the IBM License Service
353354

354-
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)
355+
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)
355356

356357
> NOTE: Make sure you do not follow the instantiation part!
357358
@@ -374,7 +375,7 @@ Follow the **Installation** section of the [Manual installation without the Oper
374375
375376
Get the [licensing-instance.yaml](./licensing-instance.yaml) file and run the following command:
376377
377-
```
378+
```shell
378379
kubectl create -f licensing-instance.yaml -n ibm-common-services
379380
```
380381

@@ -384,9 +385,9 @@ kubectl create -f licensing-instance.yaml -n ibm-common-services
384385

385386
After a couple of minutes, the Ingress configuration is created and you will be able to access the IBM License Service by retrieving the URL with the following command:
386387

387-
```
388-
export LICENSING_URL=$(kubectl get ingress ibm-licensing-service-instance -n ibm-common-services -o jsonpath='{.status.loadBalancer.ingress[0].ip}')/ibm-licensing-service-instance
389-
export TOKEN=$(kubectl get secret ibm-licensing-token -o jsonpath={.data.token} -n ibm-common-services |base64 -d)
388+
```shell
389+
export LICENSING_URL=$(kubectl get ingress ibm-licensing-service-instance -n ibm-licensing -o jsonpath='{.status.loadBalancer.ingress[0].ip}')/ibm-licensing-service-instance
390+
export TOKEN=$(kubectl get secret ibm-licensing-token -o jsonpath={.data.token} -n ibm-licensing |base64 -d)
390391
```
391392

392393
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 the following command:

platform/gcloud/gcp-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ service:
1010
enableTLS: false
1111
ingress:
1212
enabled: true
13-
tlsSecretRef: mynicecompany-crt-secret
13+
tlsSecretRef: mynicecompany-tls-secret
1414
host: mynicecompany.com
1515
tlsHosts:
1616
- mynicecompany.com

0 commit comments

Comments
 (0)