Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nmaas Platform
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nmaas
nmaas Platform
Commits
ba22336e
Commit
ba22336e
authored
6 days ago
by
kbeyro
Browse files
Options
Downloads
Patches
Plain Diff
add migration
parent
e8bd0fa7
Branches
Branches containing commit
No related tags found
1 merge request
!213
Resolve "Support deployment of applications on remote clusters"
Pipeline
#94408
failed
6 days ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/resources/db/migration/common/V1.8.0_20250527_1530__AddConnectionToCluster.sql
+11
-0
11 additions, 0 deletions
...n/common/V1.8.0_20250527_1530__AddConnectionToCluster.sql
with
11 additions
and
0 deletions
src/main/resources/db/migration/common/V1.8.0_20250527_1530__AddConnectionToCluster.sql
0 → 100644
+
11
−
0
View file @
ba22336e
ALTER
TABLE
kubernetes_nm_service_info
ADD
COLUMN
kcluster_id
integer
;
ALTER
TABLE
kubernetes_nm_service_info
ADD
CONSTRAINT
fk_kubernetes_nm_service_info_kcluster
FOREIGN
KEY
(
kcluster_id
)
REFERENCES
kcluster
(
id
)
ON
DELETE
SET
NULL
;
ALTER
TABLE
app_deployment
ADD
COLUMN
remote_cluster_id
integer
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment