Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Romain Courteaud
slapos.core
Commits
1d0eeff8
Commit
1d0eeff8
authored
Nov 23, 2023
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_upgrader: migrate instance tree linked to an existing project
parent
6fab175c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/InstanceTree_checkSiteMigrationToVirtualMaster.py
...pgrader/InstanceTree_checkSiteMigrationToVirtualMaster.py
+7
-1
No files found.
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/InstanceTree_checkSiteMigrationToVirtualMaster.py
View file @
1d0eeff8
...
...
@@ -26,9 +26,15 @@ for sql_instance in portal.portal_catalog(specialise__uid=instance_tree.getUid()
if
not
((
sql_instance
.
getAggregate
(
None
)
is
None
)
and
(
sql_instance
.
getValidationState
()
==
'invalidated'
)):
not_migrated_instance_tree_dict
[
instance_tree_relative_url
][
'alive_instance_list'
].
append
(
sql_instance
.
getRelativeUrl
())
# Node linked to a project
if
not_migrated_instance_tree_dict
[
instance_tree_relative_url
][
'project_relative_url'
]
is
not
None
:
instance_tree
.
activate
().
Base_activateObjectMigrationToVirtualMaster
(
not_migrated_instance_tree_dict
[
instance_tree_relative_url
][
'project_relative_url'
])
not_migrated_instance_tree_dict
.
pop
(
instance_tree_relative_url
)
# Outdated instance tree will move to the personal project
# as, there is no way to know where it has been allocated previously
if
(
not_migrated_instance_tree_dict
[
instance_tree_relative_url
][
'slap_state'
]
==
'destroy_requested'
)
and
\
el
if
(
not_migrated_instance_tree_dict
[
instance_tree_relative_url
][
'slap_state'
]
==
'destroy_requested'
)
and
\
(
len
(
not_migrated_instance_tree_dict
[
instance_tree_relative_url
][
'alive_instance_list'
])
==
0
)
and
\
(
not_migrated_instance_tree_dict
[
instance_tree_relative_url
][
'project_relative_url'
]
is
None
)
and
\
(
not_migrated_instance_tree_dict
[
instance_tree_relative_url
][
'destination_section'
]
is
not
None
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment