Search code examples
mysqlmongodbkuberneteskubernetes-helm

Is mysql/mongodb cluster suitable for installation on kubernetes?


I used to test installed mongodb-shard on kubernetes by helm,but I found that those helm charts are not really a qualified mongodb shard.These helm charts can correctly create Pods with names like mongos-1 mongod-server-1 mongod-shard-1,this seems to be a correct shard cluster configuration, but the appropriate mongos, mongod server instance is not created on the corresponding Pod.They just create a normal mongod instance on the corresponding pod, and there is no connection between them.Do I need to add scripts to execute commands similar to rs.addShard(config)?Encountered the same problem when installing mysql cluster using helm.

What I want to know is, is it not appropriate to install mysql/mongodb cluster on kubernetes in general scenarios?Is the database installed independently or deployed on Kubernetes?


Solution

  • Yes, you can deploy MongoDB instances on Kubernetes clusters.

    Use standalone instance if you want to test and develop and replica set for production like deployments.

    Also to make things easier you can use MongoDB Enterprise Kubernetes Operator:

    The Operator enables easy deploys of MongoDB into Kubernetes clusters, using our management, monitoring and backup platforms, Ops Manager and Cloud Manager. By installing this integration, you will be able to deploy MongoDB instances with a single simple command.

    This guide has references to the official MongoDB documentation with more necessary details regarding:

    • Install Kubernetes Operator

    • Deploy Standalone

    • Deploy Replica Set

    • Deploy Sharded Cluster

    • Edit Deployment

    • Kubernetes Resource Specification

    • Troubleshooting Kubernetes Operator

    • Known Issues for Kubernetes Operator

    So basically all you need to know in this topic.

    Please let me know if that helped.