Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ def load_arguments(self, _):
c.argument('user_assigned', options_list=['--mi-user-assigned', c.deprecate(target='--user-assigned', redirect='--mi-user-assigned', hide=True)], nargs='+', help='Space-separated user identities to be assigned.')
c.argument('parallelism', type=int, help='Maximum number of replicas to run per execution.', default=1)
c.argument('replica_completion_count', type=int, options_list=['--replica-completion-count', '--rcc'], help='Number of replicas that need to complete successfully for execution to succeed.', default=1)
c.argument('env_vars', help='A list of environment variable(s) for the container. Space-separated values in \'key=value\' format. Empty string to clear existing values. Prefix value with \'secretref:\' to reference a secret. Note: this parameter is ignored unless --image is also specified.')

with self.argument_context('containerapp job', arg_group='Scale') as c:
c.argument('min_executions', type=int, help="Minimum number of job executions to run per polling interval.")
Expand Down