Skip to content

Commit f4c7c28

Browse files
authored
Remove slowDatabase references (#16820)
* Remove slowDatabase references * Fix
1 parent 2220a24 commit f4c7c28

File tree

8 files changed

+1
-14
lines changed

8 files changed

+1
-14
lines changed

.github/actions/deploy-gitpod/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ previewctl get-credentials --gcp-service-account "${PREVIEW_ENV_DEV_SA_KEY_PATH}
2929
PREVIEW_NAME="$(previewctl get-name --branch "${INPUT_NAME}")"
3030
export PREVIEW_NAME
3131

32-
for var in WITH_WS_MANAGER_MK2 WITH_DEDICATED_EMU WITH_EE_LICENSE WITH_SLOW_DATABASE ANALYTICS WORKSPACE_FEATURE_FLAGS; do
32+
for var in WITH_WS_MANAGER_MK2 WITH_DEDICATED_EMU WITH_EE_LICENSE ANALYTICS WORKSPACE_FEATURE_FLAGS; do
3333
input_var="INPUT_${var}"
3434
if [[ -n "${!input_var:-}" ]];then
3535
export GITPOD_${var}=${!input_var}

.github/actions/deploy-gitpod/metadata.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ inputs:
2222
with_ee_licencse:
2323
description: "Use EE license"
2424
required: false
25-
with_slow_database:
26-
description: "Use slow database"
27-
required: false
2825
analytics:
2926
description: "With analytics"
3027
required: false

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
with_ws_manager_mk2: ${{ contains( steps.pr-details.outputs.pr_body, '[X] with-ws-manager-mk2') }}
3434
with_dedicated_emulation: ${{ contains( steps.pr-details.outputs.pr_body, '[X] with-dedicated-emulation') }}
3535
with_ee_license: ${{ contains( steps.pr-details.outputs.pr_body, '[X] with-ee-license') }}
36-
with_slow_database: ${{ contains( steps.pr-details.outputs.pr_body, '[X] with-slow-database') }}
3736
analytics: ${{ contains( steps.pr-details.outputs.pr_body, '[X] analytics') }}
3837
workspace_feature_flags: ${{ steps.output.outputs.workspace_feature_flags }}
3938
pr_no_diff_skip: ${{ steps.pr-diff.outputs.pr_no_diff_skip }}
@@ -302,7 +301,6 @@ jobs:
302301
with_ws_manager_mk2: ${{needs.configuration.outputs.with_ws_manager_mk2}}
303302
with_dedicated_emulation: ${{needs.configuration.outputs.with_dedicated_emulation}}
304303
with_ee_license: ${{needs.configuration.outputs.with_ee_license}}
305-
with_slow_database: ${{needs.configuration.outputs.with_slow_database}}
306304
analytics: ${{needs.configuration.outputs.analytics}}
307305
workspace_feature_flags: ${{needs.configuration.outputs.workspace_feature_flags}}
308306

.werft/jobs/build/deploy-to-preview-environment.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ export async function deployToPreviewEnvironment(werft: Werft, jobConfig: JobCon
109109
analytics: deploymentConfig.analytics,
110110
withEELicense: deploymentConfig.installEELicense,
111111
workspaceFeatureFlags: workspaceFeatureFlags,
112-
withSlowDatabase: jobConfig.withSlowDatabase,
113112
withDedicatedEmulation: jobConfig.withDedicatedEmulation,
114113
useWsManagerMk2: useWsManagerMk2,
115114
});

.werft/jobs/build/installer/installer.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export type InstallerOptions = {
1010
analytics?: Analytics;
1111
withEELicense: boolean;
1212
workspaceFeatureFlags: string[];
13-
withSlowDatabase: boolean;
1413
withDedicatedEmulation: boolean;
1514
useWsManagerMk2: boolean;
1615
};
@@ -31,7 +30,6 @@ export class Installer {
3130
PREVIEW_NAME: this.options.previewName,
3231
GITPOD_ANALYTICS: this.options.analytics,
3332
GITPOD_WORKSPACE_FEATURE_FLAGS: this.options.workspaceFeatureFlags.join(" "),
34-
GITPOD_WITH_SLOW_DATABASE: this.options.withSlowDatabase,
3533
GITPOD_WITH_EE_LICENSE: this.options.withEELicense,
3634
GITPOD_WITH_DEDICATED_EMU: this.options.withDedicatedEmulation,
3735
GITPOD_WSMANAGER_MK2: this.options.useWsManagerMk2,

.werft/jobs/build/job-config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export interface JobConfig {
3333
withSelfHostedPreview: boolean;
3434
withObservability: boolean;
3535
withLocalPreview: boolean;
36-
withSlowDatabase: boolean;
3736
withDedicatedEmulation: boolean;
3837
workspaceFeatureFlags: string[];
3938
previewEnvironment: PreviewEnvironmentConfig;
@@ -109,7 +108,6 @@ export function jobConfig(werft: Werft, context: any): JobConfig {
109108
const withLocalPreview = "with-local-preview" in buildConfig || mainBuild
110109
const recreatePreview = "recreate-preview" in buildConfig
111110
const recreateVm = mainBuild || "recreate-vm" in buildConfig;
112-
const withSlowDatabase = "with-slow-database" in buildConfig && !mainBuild;
113111
const withDedicatedEmulation = "with-dedicated-emulation" in buildConfig && !mainBuild;
114112
const storageClass = buildConfig["storage-class"] || "";
115113

@@ -187,7 +185,6 @@ export function jobConfig(werft: Werft, context: any): JobConfig {
187185
certIssuer,
188186
recreatePreview,
189187
recreateVm,
190-
withSlowDatabase,
191188
withWerft,
192189
withDedicatedEmulation,
193190
useWsManagerMk2,

dev/preview/workflow/preview/deploy-gitpod.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ GITPOD_PROXY_SECRET_NAME="proxy-config-certificates";
2828
GITPOD_ANALYTICS="${GITPOD_ANALYTICS:-}"
2929
GITPOD_WITH_EE_LICENSE="${GITPOD_WITH_EE_LICENSE:-true}"
3030
GITPOD_WORKSPACE_FEATURE_FLAGS="${GITPOD_WORKSPACE_FEATURE_FLAGS:-}"
31-
GITPOD_WITH_SLOW_DATABASE="${GITPOD_WITH_SLOW_DATABASE:-false}"
3231
GITPOD_WITH_DEDICATED_EMU="${GITPOD_WITH_DEDICATED_EMU:-false}"
3332
GITPOD_WSMANAGER_MK2="${GITPOD_WSMANAGER_MK2:-false}"
3433

install/installer/pkg/config/v1/config.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ Additional config parameters that are in experimental state
174174
|`experimental.webapp.stripe.individualUsagePriceIds.usd`|string|N| ||
175175
|`experimental.webapp.stripe.teamUsagePriceIds.eur`|string|N| ||
176176
|`experimental.webapp.stripe.teamUsagePriceIds.usd`|string|N| ||
177-
|`experimental.webapp.slowDatabase`|bool|N| ||
178177
|`experimental.webapp.iam`|IAMConfig|N| ||
179178
|`experimental.ide.resolveLatest`|bool|N| | Disable resolution of latest images and use bundled latest versions instead|
180179
|`experimental.ide.ideProxy.serviceAnnotations`||N| ||

0 commit comments

Comments
 (0)