-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(providers): single database mode #1101
base: master
Are you sure you want to change the base?
Changes from all commits
fc1907d
0ad3d69
50dcb4a
970fc34
030678d
7823169
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,12 +81,15 @@ spec: | |
type: string | ||
mode: | ||
description: 'The mode of operation of the Clowder Database | ||
Provider. Valid options are: (*_app-interface_*) where the | ||
provider will pass through database credentials found in | ||
the secret defined by the database name in the ClowdApp, | ||
and (*_local_*) where the provider will spin up a local | ||
instance of the database.' | ||
Provider. Valid options are: (*_app-interface_*) where | ||
the provider will pass through database credentials found | ||
in the secret defined by the database name in the | ||
ClowdApp, (*_local_*) where the provider will spin up a | ||
local instance of the database, and (*_single_*) that is | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hopefully fixed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think another There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've called it again, and there is no visible change. I've used this as the
|
||
similar to local but keeps only one database deployment | ||
and isolates apps by PG schemas.' | ||
enum: | ||
- single | ||
- shared | ||
- app-interface | ||
- local | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry to pick on
shared
mode since its not original intent of your PR to mess with this... I think the intent of it is to have 2+ ClowdApps share the same DB (same database, username, and password) correct?The difference between 'shared' and 'single' can be confusing. Would wording like this clarify it better?