Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
g1-g2-ostack-cloud-migration
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cloud
g1-g2-ostack-cloud-migration
Commits
106c9286
Commit
106c9286
authored
1 year ago
by
František Řezníček
Browse files
Options
Downloads
Patches
Plain Diff
fix: correct sg name prefix argument name
parent
a9050ee3
No related branches found
No related tags found
1 merge request
!15
fix: correct sg name prefix argument name
Pipeline
#459352
passed
1 year ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
ci/project-migrator.py
+1
-1
1 addition, 1 deletion
ci/project-migrator.py
with
5 additions
and
1 deletion
CHANGELOG.md
+
4
−
0
View file @
106c9286
...
...
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.2.1] - 2024-06-11
### Fixed
-
corrected argument/switch name from --destination-secgroup-entity-name-prefix to --destination-secgroup-name-prefix
## [1.2.0] - 2024-06-11
### Changed
-
source and destination entity names now match except security groups where prefix migrated- is kept
...
...
This diff is collapsed.
Click to expand it.
ci/project-migrator.py
+
1
−
1
View file @
106c9286
...
...
@@ -336,7 +336,7 @@ if __name__ == "__main__":
help
=
'
Destination cloud bootable volumes are made on top of public image. Name of destination cloud image.
'
)
AP
.
add_argument
(
'
--destination-ipv4-external-network
'
,
default
=
'
external-ipv4-general-public
'
,
help
=
'
Destination cloud IPV4 external network.
'
)
AP
.
add_argument
(
'
--destination-secgroup-
entity-
name-prefix
'
,
default
=
'
migrated-
'
,
AP
.
add_argument
(
'
--destination-secgroup-name-prefix
'
,
default
=
'
migrated-
'
,
help
=
'
Destination cloud security_groups entity name prefix.
'
)
AP
.
add_argument
(
'
--destination-entity-name-prefix
'
,
default
=
''
,
help
=
'
Destination cloud entity name prefix (all except secgroups).
'
)
...
...
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