Skip to content

Commit

Permalink
fix: update from sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
nomagick committed Jan 9, 2023
1 parent 76754a9 commit 531a4de
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions jina/parsers/orchestrate/pod.py
Expand Up @@ -249,10 +249,21 @@ def mixin_hub_pull_options_parser(parser):
"""

gp = add_arg_group(parser, title='Pull')
gp.add_argument(
'--install-requirements',
action='store_true',
default=False,
help='If set, install `requirements.txt` in the Hub Executor bundle to local',
),
gp.add_argument(
'--force-update',
'--force',
action='store_true',
default=False,
help='If set, always pull the latest Hub Executor bundle even it exists on local',
)
gp.add_argument(
'--prefer-platform',
type=str,
help='The preferred target Docker platform. (e.g. "linux/amd64", "linux/arm64")',
)

0 comments on commit 531a4de

Please sign in to comment.