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
385d4651
Commit
385d4651
authored
Dec 05, 2023
by
Romain Courteaud
🐙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_upgrader: prepare migrating Instance Tree to a remote node
parent
f72280fb
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
133 additions
and
2 deletions
+133
-2
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/Base_activateObjectMigrationToRemoteVirtualMaster.py
...ader/Base_activateObjectMigrationToRemoteVirtualMaster.py
+6
-0
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/Base_activateObjectMigrationToRemoteVirtualMaster.xml
...der/Base_activateObjectMigrationToRemoteVirtualMaster.xml
+62
-0
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/Project_checkSiteMigrationCreateRemoteNode.py
...os_upgrader/Project_checkSiteMigrationCreateRemoteNode.py
+1
-1
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/SlaveInstance_triggerObjectMigrationToRemoteVirtualMaster.py
...veInstance_triggerObjectMigrationToRemoteVirtualMaster.py
+1
-0
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/SlaveInstance_triggerObjectMigrationToRemoteVirtualMaster.xml
...eInstance_triggerObjectMigrationToRemoteVirtualMaster.xml
+1
-1
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/SoftwareInstance_triggerObjectMigrationToRemoteVirtualMaster.py
...reInstance_triggerObjectMigrationToRemoteVirtualMaster.py
+0
-0
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/SoftwareInstance_triggerObjectMigrationToRemoteVirtualMaster.xml
...eInstance_triggerObjectMigrationToRemoteVirtualMaster.xml
+62
-0
No files found.
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/Base_activateObjectMigrationToRemoteVirtualMaster.py
0 → 100644
View file @
385d4651
from
zExceptions
import
Unauthorized
if
REQUEST
is
not
None
:
raise
Unauthorized
return
context
.
getTypeBasedMethod
(
'triggerObjectMigrationToRemoteVirtualMaster'
)(
project_relative_url
)
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/Base_activateObjectMigrationToRemoteVirtualMaster.xml
0 → 100644
View file @
385d4651
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"PythonScript"
module=
"Products.PythonScripts.PythonScript"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_bind_names
</string>
</key>
<value>
<object>
<klass>
<global
name=
"_reconstructor"
module=
"copy_reg"
/>
</klass>
<tuple>
<global
name=
"NameAssignments"
module=
"Shared.DC.Scripts.Bindings"
/>
<global
name=
"object"
module=
"__builtin__"
/>
<none/>
</tuple>
<state>
<dictionary>
<item>
<key>
<string>
_asgns
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
name_container
</string>
</key>
<value>
<string>
container
</string>
</value>
</item>
<item>
<key>
<string>
name_context
</string>
</key>
<value>
<string>
context
</string>
</value>
</item>
<item>
<key>
<string>
name_m_self
</string>
</key>
<value>
<string>
script
</string>
</value>
</item>
<item>
<key>
<string>
name_subpath
</string>
</key>
<value>
<string>
traverse_subpath
</string>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
_params
</string>
</key>
<value>
<string>
project_relative_url, REQUEST=None
</string>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
Base_activateObjectMigrationToRemoteVirtualMaster
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/Project_checkSiteMigrationCreateRemoteNode.py
View file @
385d4651
...
...
@@ -57,7 +57,7 @@ if remote_node is None:
# XXX Then, migrate other documents linked to the virtual master
portal
.
portal_catalog
.
searchAndActivate
(
method_id
=
'
Instance_activateMigrationToRemoteProject
'
,
method_id
=
'
Base_activateObjectMigrationToRemoteVirtualMaster
'
,
method_args
=
[
remote_node
.
getRelativeUrl
()],
activate_kw
=
activate_kw
,
...
...
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/SlaveInstance_triggerObjectMigrationToRemoteVirtualMaster.py
0 → 100644
View file @
385d4651
return
context
.
SoftwareInstance_triggerObjectMigrationToRemoteVirtualMaster
(
remote_node_relative_url
,
REQUEST
=
REQUEST
)
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/
Instance_activateMigrationToRemoteProject
.xml
→
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/
SlaveInstance_triggerObjectMigrationToRemoteVirtualMaster
.xml
View file @
385d4651
...
...
@@ -54,7 +54,7 @@
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
Instance_activateMigrationToRemoteProject
</string>
</value>
<value>
<string>
SlaveInstance_triggerObjectMigrationToRemoteVirtualMaster
</string>
</value>
</item>
</dictionary>
</pickle>
...
...
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/
Instance_activateMigrationToRemoteProject
.py
→
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/
SoftwareInstance_triggerObjectMigrationToRemoteVirtualMaster
.py
View file @
385d4651
File moved
master/bt5/slapos_upgrader/SkinTemplateItem/portal_skins/slapos_upgrader/SoftwareInstance_triggerObjectMigrationToRemoteVirtualMaster.xml
0 → 100644
View file @
385d4651
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"PythonScript"
module=
"Products.PythonScripts.PythonScript"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_bind_names
</string>
</key>
<value>
<object>
<klass>
<global
name=
"_reconstructor"
module=
"copy_reg"
/>
</klass>
<tuple>
<global
name=
"NameAssignments"
module=
"Shared.DC.Scripts.Bindings"
/>
<global
name=
"object"
module=
"__builtin__"
/>
<none/>
</tuple>
<state>
<dictionary>
<item>
<key>
<string>
_asgns
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
name_container
</string>
</key>
<value>
<string>
container
</string>
</value>
</item>
<item>
<key>
<string>
name_context
</string>
</key>
<value>
<string>
context
</string>
</value>
</item>
<item>
<key>
<string>
name_m_self
</string>
</key>
<value>
<string>
script
</string>
</value>
</item>
<item>
<key>
<string>
name_subpath
</string>
</key>
<value>
<string>
traverse_subpath
</string>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
_params
</string>
</key>
<value>
<string>
remote_node_relative_url, REQUEST=None
</string>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
SoftwareInstance_triggerObjectMigrationToRemoteVirtualMaster
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
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