Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 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 @@ -7,6 +7,7 @@ upcoming
* 'az containerapp auth update': Support authenticating blob storage token store using managed identity with `--blob-container-uri` and `--blob-container-identity`.
* 'az containerapp env create': Set identity only when `--mi-system-assigned` or `--mi-user-assigned` is specified.
* 'az containerapp env create': Set identity only when `--system-assigned` or `--user-assigned` is specified.
* 'az containerapp up --model-registry --model-name --model-version: Support deploying Azure AI Foundry model to Container App.'

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 an Azure AI Foundry Model', is_preview=True) as c:
c.argument('model_registry', help="The name of the Azure AI Foundry model registry.", is_preview=True)
c.argument('model_name', help="The name of the Azure AI Foundry model.", is_preview=True)
c.argument('model_version', help="The version of the Azure AI 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
Loading