Install the Platform or PDI Server on AWS
When the AWS environment is properly configured, you can proceed to install the Platform or PDI Server.
Retrieve the kubeconfig from the EKS cluster.
In the workstation console, obtain the kubeconfig from the EKS cluster you created by using the following command:
aws eks update-kubeconfig --name <my_eks_cluster_name> --region <my_EKS_region>
To configure the Platform or PDI Server YAML file, open the file
pentaho-server-aws-rds-<lb-type>.yaml
in theyaml
project directory.lb-typeWhen to usealb
Use if you installed the AWS Application load balancer.
nginx
Use if you have installed the NGINX Ingress Controller.
Update the Platform or PDI Server YAML file by copying the values that you recorded in the Worksheet for AWS hyperscaler.
Retrieve the Platform or PDI Server entry point URI information.
The Platform or PDI Server entry point URI information can be retrieved by running either of the following commands on the workstation console:
kubectl get ingress -n pentaho-server
or
echo $( kubectl get ingress -n pentaho-server -o jsonpath='{.items..hostname}' )
The port number is 80 by default.
Deploy the Platform or PDI Server using the following command:
kubectl apply -f <path to Pentaho deployment YAML>
Test the Platform or PDI Server by retrieving the LoadBalancer Ingress URI.
To retreive the LoadBalancer Ingress URI, run the following command in the workstation console:
echo $( kubectl get ingress -n pentaho-server -o jsonpath='{.items..hostname}' )
Note: The port number for this load balancer is 80, not 8080.
Use the URI that you received in the previous step in a Pentaho-supported browser to open the Platform or PDI Server login window and access the Platform or PDI Server.
FieldDefault valueUsername
admin
Password
password
Last updated
Was this helpful?