DEV Community

Discussion on: Blazingly fast Preview Environments for NextJS, NodeJS, and MongoDB on AWS

Collapse
 
vitalykarasik profile image
Vitaly Karasik

1) Do all components, including DBs, start into K8S?
2) Can I customize deployments?

Collapse
 
pjeziorowski profile image
Patryk Jeziorowski

1) DBs can be run in 'container mode' or 'managed mode' - container DBs run into K8S, managed DBs use cloud-provider services like RDS, ElastiCache etc.

2) There is room for customization - what exactly do you mean though?

Collapse
 
vitalykarasik profile image
Vitaly Karasik

1) Thanks, ability to run managed service is great!
2) I mean number of replicas and others

Thread Thread
 
pjeziorowski profile image
Patryk Jeziorowski

You can configure application CPU, Memory, replicas, expose ports, and so on. We are working on adding new customization options all the time.

Thread Thread
 
vitalykarasik profile image
Vitaly Karasik

Cool! I have to play with Qovery :-)

Collapse
 
rophilogene profile image
Romaric P.
  1. You have the choice. Qovery provides 2 modes for your DBs. Managed mode and Container mode. The managed mode will use the AWS managed service (E.g RDS for Postgres - which is great for production) while the Container mode will starts a container with a block storage attached to it. (good for development purpose)

  2. What do you need to know?

Collapse
 
vitalykarasik profile image
Vitaly Karasik

Thank you - Patryk already answered