Azure
Microsoft が管理する世界のデータ センター ネットワークを介してアプリケーションとサービスを構築、配置、および管理するインフラストラクチャおよびクラウド コンピューティング プラットフォーム。
499 件の質問
このブラウザーはサポートされなくなりました。
Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。
この演習を進めていくところで、エラーが発生しました。
Azure Container Registry (ACR) で az acr build
コマンドを使用してイメージのビルドを試みたところ、以下のエラーが発生しました。
(TasksOperationsNotAllowed) ACR Tasks requests for the registry <your_registry_name> and <your_subscription_id> are not permitted. Please file an Azure support request at http://aka.ms/azuresupport for assistance.
Code: TasksOperationsNotAllowed
Message: ACR Tasks requests for the registry <your_registry_name> and <your_subscription_id> are not permitted. Please file an Azure support request at http://aka.ms/azuresupport for assistance.
Target: request
<your_registry_name>
と <your_subscription_id>
は、実際には自分のリソース名とサブスクリプションIDが入っていますが、ここでは伏せています。
このエラーメッセージは、ACR Tasks がサブスクリプションで許可されていないことを示しているように思えます。
試したことは以下のとおりです。
az acr build
コマンドを実行az account show
)az acr list
)質問:
TasksOperationsNotAllowed
エラーの原因と解決策は何でしょうか?az acr build
コマンドを使用してイメージのビルドを試みたところ、以下のエラーが発生しました。
(TasksOperationsNotAllowed) ACR Tasks requests for the registry <your_registry_name> and <your_subscription_id> are not permitted. Please file an Azure support request at http://aka.ms/azuresupport for assistance.
Code: TasksOperationsNotAllowed Message: ACR Tasks requests for the registry <your_registry_name> and <your_subscription_id> are not permitted. Please file an Azure support request at http://aka.ms/azuresupport for assistance. Target: request
`<your_registry_name>` と `<your_subscription_id>` は、実際には自分のリソース名とサブスクリプションIDが入っていますが、ここでは伏せています。
このエラーメッセージは、ACR Tasks がサブスクリプションで許可されていないことを示しているように思えます。
試したことは以下のとおりです。
- `az acr build` コマンドを実行
- Azure CLI にログイン済み、正しいサブスクリプションを選択済みであることを確認 (`az account show`)
- ACR 自体は正常に作成されており、存在することを確認済み (`az acr list`)
質問:
- この `TasksOperationsNotAllowed` エラーの原因と解決策は何でしょうか?
- 特に、無料トライアルのサブスクリプションを使用している場合に、このエラーが発生する可能性はありますか?
- Azure サポートに問い合わせる以外に、自分で確認できることはありますか?