Reputation: 329
We are running Alluxio on our apps EKS cluster. And the cluster deployment creating worker pods on each eks node as worker deployment kind is DaemonSet. Thus worker pods are consuming resources in all EKS nodes. We want to limit the worker pods to some specific count. Is it possible to use deployment kind for alluxio workers?
Upvotes: 0
Views: 67
Reputation: 329
We can deploy worker pods with kind set to Deployment, so that pods will not be created on each eks nodes, And also we can mention the replicas to workers for maintaining high availability.
Upvotes: 0