Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 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
1 change: 1 addition & 0 deletions src/containerapp/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release History
upcoming
++++++
* 'az containerapp auth update': Support authenticating blob storage token store using managed identity with `--blob-container-uri` and `--blob-container-identity`.
* 'az containerapp up --model-registry --model-name --model-version: Support deploying Foundry model to Container App.'
Comment thread
harryli0108 marked this conversation as resolved.
Outdated

1.1.0b4
++++++
Expand Down
5 changes: 5 additions & 0 deletions src/containerapp/azext_containerapp/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,11 @@ def load_arguments(self, _):
c.argument('user_assigned', nargs='+', help="Space-separated user identities to be assigned.")
c.argument('system_assigned', help="Boolean indicating whether to assign system-assigned identity.", action='store_true')

with self.argument_context('containerapp up', arg_group='Deploy a Foundry Model', is_preview=True) as c:
Comment thread
harryli0108 marked this conversation as resolved.
Outdated
Comment thread
harryli0108 marked this conversation as resolved.
Outdated
c.argument('model_registry', help="The name of the Foundry model registry.", is_preview=True)
c.argument('model_name', help="The name of the Foundry model.", is_preview=True)
c.argument('model_version', help="The version of the Foundry model.", is_preview=True)

with self.argument_context('containerapp auth') as c:
c.argument('blob_container_uri', help='The URI of the blob storage containing the tokens. Should not be used along with sas_url_secret and sas_url_secret_name.', is_preview=True)
c.argument('blob_container_identity', options_list=['--blob-container-identity', '--bci'],
Expand Down
Loading