Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f43b265

Browse files
committed
Merge branch 'rename-dle-in-ui' into 'master'
chore(ui): rename DLE β†’ DBLab, Database Lab Engine β†’ DBLab Engine (https://gitlab.com/postgres-ai/platform/-/issues/252) See merge request postgres-ai/database-lab!814
2 parents 167e8e8 + b11eb88 commit f43b265

File tree

18 files changed

+58
-58
lines changed

18 files changed

+58
-58
lines changed

β€Žui/packages/ce/src/App/Menu/Instances/index.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const Instances = observer((props: Props) => {
2121
activeClassName={styles.selected}
2222
className={styles.link}
2323
>
24-
DLE #1
24+
DBLab #1
2525
</Button>
2626
</nav>
2727
<Button

β€Žui/packages/ce/src/App/Menu/StickyTopBar/index.tsxβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export const StickyTopBar = () => {
9797
handleReset()
9898
setSnackbarState({
9999
isOpen: true,
100-
message: 'All DLE SE features are now active.',
100+
message: 'All DBLab SE features are now active.',
101101
type: 'success',
102102
})
103103
} else {
@@ -178,7 +178,7 @@ export const StickyTopBar = () => {
178178
onClick={handleActivate}
179179
disabled={isLoading}
180180
>
181-
re-activate DLE
181+
re-activate DBLab
182182
{isLoading && <Spinner size="sm" className={styles.spinner} />}
183183
</Button>
184184
</>
@@ -191,7 +191,7 @@ export const StickyTopBar = () => {
191191
onClick={handleActivate}
192192
disabled={isLoading}
193193
>
194-
re-activate DLE
194+
re-activate DBLab
195195
{isLoading && <Spinner size="sm" className={styles.spinner} />}
196196
</Button>
197197
</>

β€Žui/packages/platform/src/components/ContentLayout/DeprecatedApiBanner/index.tsxβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ export const DeprecatedApiBanner = () => {
2929
return (
3030
<div className={classes.root}>
3131
<Status type="warning" className={classes.status} disableColor>
32-
The version of your DLE instance is deprecated.
32+
The version of your DBLab instance is deprecated.
3333
</Status>{' '}
34-
Some information about DLE, disks, clones, and snapshots may be
34+
Some information about DBLab, disks, clones, and snapshots may be
3535
unavailable.
3636
<br />
37-
Please upgrade your DLE to&nbsp;
37+
Please upgrade your DBLab to&nbsp;
3838
<GatewayLink
3939
href="https://gitlab.com/postgres-ai/database-lab/-/releases"
4040
className={classes.link}

β€Žui/packages/platform/src/components/CreateDbLabCards/CreateDbLabCards.tsxβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const CreatedDbLabCards = ({
100100

101101
const productData = [
102102
{
103-
title: 'Create DLE in your cloud',
103+
title: 'Create DBLab in your cloud',
104104
renderDescription: () => (
105105
<>
106106
<p>
@@ -116,7 +116,7 @@ export const CreatedDbLabCards = ({
116116
{
117117
id: 'createDblabInstanceButton',
118118
content: (
119-
<CreateButton type="create" title="Create DLE in your cloud" />
119+
<CreateButton type="create" title="Create DBLab in your cloud" />
120120
),
121121
},
122122
],
@@ -144,7 +144,7 @@ export const CreatedDbLabCards = ({
144144
content: (
145145
<CreateButton
146146
type="install"
147-
title="Install DLE on an existing machine"
147+
title="Install DBLab on an existing machine"
148148
/>
149149
),
150150
},

β€Žui/packages/platform/src/components/DbLabInstanceForm/DbLabFormSteps/AnsibleInstance.tsxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export const AnsibleInstance = ({
230230
) : null}
231231
<AnsibleInstallation />
232232
<p className={classes.title}>
233-
6. Run ansible playbook to create server and install DLE SE
233+
6. Run ansible playbook to create server and install DBLab SE
234234
</p>
235235
<SyntaxHighlight
236236
content={getPlaybookCommandWithoutDocker(
@@ -242,7 +242,7 @@ export const AnsibleInstance = ({
242242
{getNetworkSubnet(state.provider, classes)}
243243
<p className={classes.title}>
244244
7. After the code snippet runs successfully, follow the directions
245-
displayed in the resulting output to start using DLE AUI/API/CLI.
245+
displayed in the resulting output to start using DBLab AUI/API/CLI.
246246
</p>
247247
<Box
248248
sx={{

β€Žui/packages/platform/src/components/DbLabInstanceForm/DbLabFormSteps/DockerInstance.tsxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,15 +139,15 @@ export const DockerInstance = ({
139139
</>
140140
) : null}
141141
<p className={classes.title}>
142-
3. Run ansible playbook to create server and install DLE SE
142+
3. Run ansible playbook to create server and install DBLab SE
143143
</p>
144144
<SyntaxHighlight
145145
content={getPlaybookCommand(state, cloudImages[0], orgKey)}
146146
/>
147147
{getNetworkSubnet(state.provider, classes)}
148148
<p className={classes.title}>
149149
4. After the code snippet runs successfully, follow the directions
150-
displayed in the resulting output to start using DLE UI/API/CLI.
150+
displayed in the resulting output to start using DBLab UI/API/CLI.
151151
</p>
152152
<Box
153153
sx={{

β€Žui/packages/platform/src/components/DbLabInstanceForm/DbLabInstanceForm.tsxβ€Ž

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ const DbLabInstanceForm = (props: DbLabInstanceFormWithStylesProps) => {
146146
(region: CloudRegion) => region.world_part === state.region,
147147
)
148148

149-
const pageTitle = <ConsolePageTitle title="Create DLE" />
149+
const pageTitle = <ConsolePageTitle title="Create DBLab" />
150150
const breadcrumbs = (
151151
<ConsoleBreadcrumbsWrapper
152152
{...props}
153153
breadcrumbs={[
154154
{ name: 'Database Lab Instances', url: 'instances' },
155-
{ name: 'Create DLE' },
155+
{ name: 'Create DBLab' },
156156
]}
157157
/>
158158
)
@@ -472,10 +472,10 @@ const DbLabInstanceForm = (props: DbLabInstanceFormWithStylesProps) => {
472472
}}
473473
/>
474474
</Box>
475-
<p className={classes.sectionTitle}>5. Provide DLE name</p>
475+
<p className={classes.sectionTitle}>5. Provide DBLab name</p>
476476
<TextField
477477
required
478-
label="DLE Name"
478+
label="DBLab Name"
479479
variant="outlined"
480480
fullWidth
481481
value={state.name}
@@ -501,12 +501,12 @@ const DbLabInstanceForm = (props: DbLabInstanceFormWithStylesProps) => {
501501
}
502502
/>
503503
<p className={classes.sectionTitle}>
504-
6. Define DLE verification token (keep it secret!)
504+
6. Define DBLab verification token (keep it secret!)
505505
</p>
506506
<div className={classes.generateContainer}>
507507
<TextField
508508
required
509-
label="DLE Verification Token"
509+
label="DBLab Verification Token"
510510
variant="outlined"
511511
fullWidth
512512
value={state.verificationToken}
@@ -534,7 +534,7 @@ const DbLabInstanceForm = (props: DbLabInstanceFormWithStylesProps) => {
534534
Generate random
535535
</Button>
536536
</div>
537-
<p className={classes.sectionTitle}>7. Choose DLE version</p>
537+
<p className={classes.sectionTitle}>7. Choose DBLab version</p>
538538
<Select
539539
label="Select tag"
540540
items={
@@ -564,7 +564,7 @@ const DbLabInstanceForm = (props: DbLabInstanceFormWithStylesProps) => {
564564
8. Provide SSH public keys (one per line)
565565
</p>
566566
<p className={classes.instanceParagraph}>
567-
These SSH public keys will be added to the DLE server's
567+
These SSH public keys will be added to the DBLab server's
568568
&nbsp;
569569
<code className={classes.code}>~/.ssh/authorized_keys</code>
570570
&nbsp; file. Providing at least one public key is

β€Žui/packages/platform/src/components/DbLabInstanceForm/DbLabInstanceFormSidebar.tsxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export const DbLabInstanceFormSidebar = ({
181181
</span>
182182
</div>
183183
<div className={classes.asideSection}>
184-
<span>Software: DLE SE (pay as you go)</span>
184+
<span>Software: DBLab SE (pay as you go)</span>
185185
<p className={classes.flexWrap}>
186186
{state.instanceType && (
187187
<>
@@ -204,7 +204,7 @@ export const DbLabInstanceFormSidebar = ({
204204
onClick={handleCreate}
205205
disabled={!state.name || !state.verificationToken || disabled}
206206
>
207-
Create DLE
207+
Create DBLab
208208
</Button>
209209
</div>
210210
)

β€Žui/packages/platform/src/components/DbLabInstanceInstallForm/DbLabFormSteps/AnsibleInstance.tsxβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const AnsibleInstance = ({
7777
</li>
7878
<li>
7979
Attach an empty disk that is at least twice the size of the
80-
database you plan to use with DLE.
80+
database you plan to use with DBLab.
8181
</li>
8282
<li>
8383
Ensure that your SSH public key is added to the machine (in
@@ -110,14 +110,14 @@ export const AnsibleInstance = ({
110110
content={'ansible-galaxy install -r requirements.yml'}
111111
/>{' '}
112112
<p className={classes.title}>
113-
5. Execute the Ansible playbook to install DLE SE on the remote
113+
5. Execute the Ansible playbook to install DBLab SE on the remote
114114
server
115115
</p>
116116
<p>
117117
Replace{' '}
118118
<code className={classes.code}>'user@server-ip-address'</code>
119119
with the specific username and IP address of the server where
120-
you will be installing DLE.
120+
you will be installing DBLab.
121121
</p>
122122
<SyntaxHighlight
123123
content={getAnsiblePlaybookCommand(state, orgKey)}
@@ -133,7 +133,7 @@ export const AnsibleInstance = ({
133133
</p>
134134
<p className={classes.title}>
135135
7. After the code snippet runs successfully, follow the
136-
directions displayed in the resulting output to start using DLE
136+
directions displayed in the resulting output to start using DBLab
137137
UI/API/CLI.
138138
</p>{' '}
139139
<Box

β€Žui/packages/platform/src/components/DbLabInstanceInstallForm/DbLabFormSteps/DockerInstance.tsxβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const DockerInstance = ({
7373
</li>
7474
<li>
7575
Attach an empty disk that is at least twice the size of the
76-
database you plan to use with DLE.
76+
database you plan to use with DBLab.
7777
</li>
7878
<li>
7979
Ensure that your SSH public key is added to the machine (in
@@ -82,14 +82,14 @@ export const DockerInstance = ({
8282
</li>
8383
</ul>
8484
<p className={classes.title}>
85-
2. Execute the Ansible playbook to install DLE SE on the remote
85+
2. Execute the Ansible playbook to install DBLab SE on the remote
8686
server
8787
</p>
8888
<p>
8989
Replace{' '}
9090
<code className={classes.code}>'user@server-ip-address'</code>
9191
with the specific username and IP address of the server where
92-
you will be installing DLE.
92+
you will be installing DBLab.
9393
</p>
9494
<SyntaxHighlight content={getPlaybookCommand(state, orgKey)} />
9595
<p className={classes.important}>Please be aware:</p>
@@ -103,7 +103,7 @@ export const DockerInstance = ({
103103
</p>
104104
<p className={classes.title}>
105105
3. After the code snippet runs successfully, follow the
106-
directions displayed in the resulting output to start using DLE
106+
directions displayed in the resulting output to start using DBLab
107107
AUI/API/CLI.
108108
</p>{' '}
109109
<Box

0 commit comments

Comments
(0)

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /