-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Draft - Do not merge] [Quantum] Add workspace MOBO storage account support (33346) #8582
base: main
Are you sure you want to change the base?
[Draft - Do not merge] [Quantum] Add workspace MOBO storage account support (33346) #8582
Conversation
|
rule | cmd_name | rule_message | suggest_message |
---|---|---|---|
quantum workspace create | cmd quantum workspace create added parameter byo_storage_account |
||
quantum workspace create | cmd quantum workspace create update parameter storage_account : removed property required=True |
Hi @warren-jones, |
Thank you for your contribution! We will review the pull request and get back to you soon. |
The git hooks are available for azure-cli and azure-cli-extensions repos. They could help you run required checks before creating the PR. Please sync the latest code with latest dev branch (for azure-cli) or main branch (for azure-cli-extensions). pip install azdev --upgrade
azdev setup -c <your azure-cli repo path> -r <your azure-cli-extensions repo path>
|
Release SuggestionsModule: quantum
Notes
|
The quantum service will create a MOBO managed storage account during the workspace creation process.
Alternatively, the user may specify an existing storage account when creating a workspace. We are calling this "BYO storage account".
The CLI extension currently uses an ARM template to do workspace creation, but prior to CLI PR 4314 (February 2022) workspaces were created by calling the
WorkspacesOperations.begin_create_or_update
method of the extension’s control plane client. This code was simpler (and I think executed faster) than the ARM-template implementation.I propose we revert to that implementation in the CLI instead of using an ARM template: CLI PR 4314 was a fix for an intermittent race condition between workspace creation, storage account creation, and role assignment, that were all initiated by the CLI code. Since the MOBO storage account will be created and managed in the service, this CLI race condition won’t happen. We can simplify the client side.
The CLI UX could be characterized as follows:
--byo-storage
command parameter flag is present, otherwise it issues the error messageThe third alternative would be a fail-safe for potential control plane problems with the MOBO feature. The CLI could fall back on the ARM-template code that has been in place since 2022.
Also, because the ARM-template implementation executes so slowly, leaving that code in place for BYO storage will incentivize the user to accept the [presumably] much faster MOBO storage account creation.
Related command
az quantum workspace create
azdev style <YOUR_EXT>
locally? (pip install azdev
required)python scripts/ci/test_index.py -q
locally? (pip install wheel==0.30.0
required)