Skip to content

Commit 8ce0f09

Browse files
committed
Reviewed EKS with nginx and increased cluster node to 3
1 parent 8b631d0 commit 8ce0f09

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

platform/eks/README-NGINX.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ You will be able to access the IBM License Service by retrieving the URL with th
9696
```bash
9797
export LICENSING_URL=$(kubectl get ingress ibm-licensing-service-instance -n ibm-licensing -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')/ibm-licensing-service-instance
9898
export TOKEN=$(kubectl get secret ibm-licensing-token -n ibm-licensing -o jsonpath='{.data.token}' |base64 -d)
99+
echo http://${LICENSING_URL}/status?token=${TOKEN}
99100
```
100101

101102
You can access the `http://${LICENSING_URL}/status?token=${TOKEN}` URL to view the licensing usage.
@@ -106,4 +107,4 @@ Otherwise, you can also retrieve the licensing report .zip file by running:
106107
curl "http://${LICENSING_URL}/snapshot?token=${TOKEN}" --output report.zip
107108
```
108109

109-
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).
110+
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.14.0?topic=service-troubleshooting-license).

platform/eks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ Where you provide your `AWS Access Key ID`, `AWS Secret Access Key` and the `Def
5555
#### b. Create an EKS cluster (20 min)
5656

5757
```bash
58-
eksctl create cluster <CLUSTER_NAME> --version 1.33 --alb-ingress-access
58+
eksctl create cluster <CLUSTER_NAME> --version 1.33 --nodes 3 --alb-ingress-access
5959
```
6060

6161
> **Note**
6262
> The tutorial has been tested with the Kubernetes version 1.33. Check the supported kubernetes version in the [Detailed System Requirements](https://www.ibm.com/software/reports/compatibility/clarity/product.html?id=C88B83D2853E4A628442E38C1194FF8F) page.
6363
6464
> **Warning**
65-
> If you prefer to use the NGINX Ingress Controller instead of the ALB Load Balancer to expose ODM services, don't use the --alb-ingress-access option during the creation of the cluster !
65+
> If you prefer to use the NGINX Ingress Controller instead of the ALB Load Balancer to expose ODM services, don't use the --alb-ingress-access option during the creation of the cluster.
6666
67-
For more information, refer to [Creating an Amazon EKS cluster](https://docs.aws.amazon.com/eks/latest/userguide/create-cluster.html).
67+
To see the options that you can specify when creating a cluster with `eksctl`, use the `eksctl create cluster --help` command. For more information, refer to [Creating an Amazon EKS cluster](https://docs.aws.amazon.com/eks/latest/userguide/create-cluster.html).
6868

6969
#### c. Set up your environment
7070

0 commit comments

Comments
 (0)