Skip to content

TIBCO BusinessEvents on Amazon EKS Based Kubernetes Cluster

lakshmimekala edited this page Nov 10, 2023 · 2 revisions

You can run any TIBCO BusinessEvents application on Amazon Elastic Kubernetes Service (Amazon EKS) and monitor the application by using TIBCO BusinessEvents Enterprise Administrator Agent. You can also manage business rules in TIBCO BusinessEvents WebStudio by running RMS on the AWS based Kubernetes cluster.

For details, see Amazon EKS Documentation.

Pre Requisites

Create EKS Cluster

  • Create your Amazon EKS cluster using eksccli and worker nodes with the following command:

    eksctl create cluster --name <my-cluster> --region <region-code>
    
  • To connect to Amazon EKS Cluster, execute below command

    aws eks update-kubeconfig --name <my-cluster> --region <region-code>
    
  • To check if everything is properly configured, run the following command

    kubectl get nodes
    
  • For other ways of Creating AWS EKS Cluster, refer to Amazon EKS cluster doc

Delete Cluster

  • To delete the cluster, run the following command:
    eksctl delete cluster --name <cluster-name>
    
  • For other ways of deleting AWS EKS Cluster, refer to Amazon EKS cluster doc

Next Topic: Registry

Clone this wiki locally