Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
GC Infrastructure code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
Deployment and Operations
GC Infrastructure code
Merge requests
!210
Change virt services for anthos on-prem infra
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Change virt services for anthos on-prem infra
GONRG-3975-on-prem-clear-install
into
master
Overview
0
Commits
17
Pipelines
5
Changes
13
Closed
Aliaksandr Ramanovich (EPAM)
requested to merge
GONRG-3975-on-prem-clear-install
into
master
3 years ago
Overview
0
Commits
17
Pipelines
5
Changes
13
Expand
Disable ingress since we use asm Change virtual services rules
Edited
3 years ago
by
Aliaksandr Ramanovich (EPAM)
0
0
Merge request reports
Compare
master
version 4
ebbb1629
3 years ago
version 3
c470d144
3 years ago
version 2
3d6c516f
3 years ago
version 1
dce2d929
3 years ago
master (base)
and
latest version
latest version
41d9e8be
17 commits,
3 years ago
version 4
ebbb1629
16 commits,
3 years ago
version 3
c470d144
16 commits,
3 years ago
version 2
3d6c516f
15 commits,
3 years ago
version 1
dce2d929
13 commits,
3 years ago
13 files
+
583
−
35
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
modules/anthos_infra/bootstrap_scripts/db.sql
0 → 100644
+
34
−
0
Options
CREATE
SCHEMA
"<DATA_PARTITION_ID>"
;
DROP
TABLE
IF
EXISTS
<
DATA_PARTITION_ID
>
.
"StorageRecord"
;
CREATE
TABLE
<
DATA_PARTITION_ID
>
.
"StorageRecord"
(
id
text
COLLATE
pg_catalog
.
"default"
NOT
NULL
,
pk
bigint
NOT
NULL
GENERATED
ALWAYS
AS
IDENTITY
PRIMARY
KEY
,
data
jsonb
NOT
NULL
,
CONSTRAINT
StorageRecord_id
UNIQUE
(
id
)
);
CREATE
INDEX
StorageRecord_datagin
ON
<
DATA_PARTITION_ID
>
.
"StorageRecord"
USING
GIN
(
data
);
-----------------
DROP
TABLE
IF
EXISTS
<
DATA_PARTITION_ID
>
.
"StorageSchema"
;
CREATE
TABLE
<
DATA_PARTITION_ID
>
.
"StorageSchema"
(
id
text
COLLATE
pg_catalog
.
"default"
NOT
NULL
,
pk
bigint
NOT
NULL
GENERATED
ALWAYS
AS
IDENTITY
PRIMARY
KEY
,
data
jsonb
NOT
NULL
,
CONSTRAINT
StorageSchema_id
UNIQUE
(
id
)
);
CREATE
INDEX
StorageSchema_datagin
ON
<
DATA_PARTITION_ID
>
.
"StorageSchema"
USING
GIN
(
data
);
------------------
CREATE
TABLE
<
DATA_PARTITION_ID
>
.
"LegalTagOsm"
(
id
text
COLLATE
pg_catalog
.
"default"
NOT
NULL
,
pk
bigint
NOT
NULL
GENERATED
ALWAYS
AS
IDENTITY
PRIMARY
KEY
,
data
jsonb
NOT
NULL
,
CONSTRAINT
LegalTagOsm_id
UNIQUE
(
id
)
);
CREATE
INDEX
LegalTagOsm_dataGin
ON
<
DATA_PARTITION_ID
>
.
"LegalTagOsm"
USING
GIN
(
data
);
------------------
CREATE
TABLE
<
DATA_PARTITION_ID
>
.
"wksMapping"
(
id
text
COLLATE
pg_catalog
.
"default"
NOT
NULL
,
pk
bigint
NOT
NULL
GENERATED
ALWAYS
AS
IDENTITY
PRIMARY
KEY
,
data
jsonb
NOT
NULL
,
CONSTRAINT
wksMapping_id
UNIQUE
(
id
)
);
CREATE
INDEX
wksMapping_datagin
ON
<
DATA_PARTITION_ID
>
.
"wksMapping"
USING
GIN
(
data
);
Loading