Skip to content

Commit b5dcacd

Browse files
authored
upcoming: [UIE-9383] - DBaaS - Add feature flag support for PgBouncer (#13134)
* upcoming: [UIE-9383] - DBaaS - Add feature flag support for PgBouncer * Adding changeset for PgBouncer feature flag change
1 parent b643860 commit b5dcacd

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Upcoming Features
3+
---
4+
5+
Add feature flag support for PgBouncer in DBaaS ([#13134](https://github.com/linode/manager/pull/13134))

packages/manager/src/dev-tools/FeatureFlagTool.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const options: { flag: keyof Flags; label: string }[] = [
5050
{ flag: 'supportTicketSeverity', label: 'Support Ticket Severity' },
5151
{ flag: 'dbaasV2', label: 'Databases V2 Beta' },
5252
{ flag: 'dbaasV2MonitorMetrics', label: 'Databases V2 Monitor' },
53+
{ flag: 'databasePgBouncer', label: 'Database PgBouncer' },
5354
{ flag: 'databaseResize', label: 'Database Resize' },
5455
{ flag: 'databaseAdvancedConfig', label: 'Database Advanced Config' },
5556
{ flag: 'databaseVpc', label: 'Database VPC' },

packages/manager/src/featureFlags.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ export interface Flags {
196196
cloudNat: CloudNatFlag;
197197
databaseAdvancedConfig: boolean;
198198
databaseBeta: boolean;
199+
databasePgBouncer: boolean;
199200
databasePremium: boolean;
200201
databaseResize: boolean;
201202
databaseRestrictPlanResize: boolean;

0 commit comments

Comments
 (0)