|
https://docs.mongodb.com/atlas-open-service-broker/master/tutorial/deploy-sharded-cluster/#optional-configure-any-additional-settings-for-a-sharded-cluster-deployment
EXAMPLE
This example resource definition creates a sharded cluster called my-sharded-cluster in the atlas namespace that has the following configuration:
- Managed by a cluster-scoped (ClusterServiceBroker) Atlas Open Service Broker
- AWS as a cloud service provider
- An instance size of M10
- Composed of three shards
- Located in the EU (Frankfurt) region
- Auto-scaling disabled
- Atlas Cloud Provider Snapshots enabled
copy
copied
apiVersion: servicecatalog.k8s.io/v1beta1 kind: ServiceInstance metadata: name: my-sharded-cluster namespace: atlas spec: clusterServiceClassExternalName: mongodb-atlas-aws clusterServicePlanExternalName: M10 parameters: cluster: numShards: 3 providerSettings: regionName: EU_CENTRAL_1 autoscaling: diskGBEnabled: false providerBackupEnabled: true
|