I am in the process of deploying keycloak on the AWS EKS cluster.
Referred below link to EKS Cluster deployment.
Able to deploy Nginx sample application successfully. But when doing the same for keycloak application is not running on HTTP port 80.
Command -
kubectl create deployment keycloak-app --image=jboss/keycloak --port=80 --replicas=1
kubectl expose keycloak-app --port=80 --type=LoadBalancer
everything is showing in running, pod, deployment etc
pod/keycloak-app-7cb59d744-s9r5m 1/1 Running 0 40m
deployment.apps/keycloak-app 1/1 1 1 40m
replicaset.apps/keycloak-app-7cb59d744 1 1 1 40m
Everything shows running but, on the application it giving an error on browser
didn’t send any data.
What is the best way to deploy Keycloak on the AWS EKS cluster?
Thanks!