I am trying to install dremio on kubernetes AWS eks cluster with below configuration.
Instancetype: r5.4xlarge which has cpu 16 and memory:128Gib
NodeAutoScalingGroupMinSize: 1
NodeAutoScalingGroupMaxSize: 20
NodeAutoScalingGroupDesiredCapacity: 3
$ kubectl get svc
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
dremio-client LoadBalancer ClusterIPiscoming pending 31010:32121/TCP,9047:31747/TCP 56m
4.$ kubectl get pod
NAME READY STATUS RESTARTS AGE
dremio-executor-0 0/1 Init:0/2 0 56m
dremio-master-0 0/1 Init:1/4 0 56m
5.$kubectl get services dremio-client
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
dremio-client LoadBalancer CLUSTER-IPiscoming pending 31010:32121/TCP,9047:31747/TCP 3m21s
ISSUE
1.External_IP is in pending state.
2.POD state for executor and master isnot in running state.
3.Tolerance shows unreachable or not ready even when nodes are ready.
Could you please help with this?