Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
ssa
workspaces
Merge requests
!376
Image Ingestion Workflow Part 1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Image Ingestion Workflow Part 1
WS-531_image_ingestion
into
main
Overview
0
Commits
3
Pipelines
3
Changes
8
Merged
Charlotte Hausman
requested to merge
WS-531_image_ingestion
into
main
3 years ago
Overview
0
Commits
3
Pipelines
3
Changes
8
Expand
fix conveyor to allow multiple ingestion attempts
fix workflow endpoint for image ingestion
create ingest-image workflow
Edited
3 years ago
by
Charlotte Hausman
0
0
Merge request reports
Compare
main
version 2
fae1c25b
3 years ago
version 1
fdb7a822
3 years ago
main (base)
and
latest version
latest version
adaf5ef0
3 commits,
3 years ago
version 2
fae1c25b
2 commits,
3 years ago
version 1
fdb7a822
1 commit,
3 years ago
8 files
+
149
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
apps/cli/executables/pexable/conveyor/conveyor/conveyor.py
+
11
−
0
Options
@@ -45,6 +45,13 @@ def arg_parser() -> argparse.ArgumentParser:
required
=
False
,
help
=
"
deliver standard image results to analyst image QA area
"
,
)
parser
.
add_argument
(
"
--retrieve-img
"
,
nargs
=
1
,
action
=
"
store
"
,
required
=
False
,
help
=
"
retrieve standard image results to original parent directory
"
,
)
return
parser
@@ -91,6 +98,10 @@ def main():
action
=
"
Image Delivery
"
settings
=
_get_settings
(
args
.
deliver_img
[
0
])
conveyor
=
DeliveryConveyor
(
settings
,
action
)
elif
args
.
retrieve_img
is
not
None
:
action
=
"
Image Retrieval
"
settings
=
_get_settings
(
args
.
retrieve_img
[
0
])
conveyor
=
RetrievalConveyor
(
settings
,
action
)
conveyor
.
convey
()
logger
.
info
(
f
"
Standard
{
action
}
is complete!
"
)
Loading