azure container instance fluent management sdk を使用して、azure コンテナー インスタンスを起動しようとしています。Windows ベースのコンテナーを使用しています。次のエラーが表示されます。
System.Private.CoreLib: 関数の実行中に例外が発生しました: SpinUp。Microsoft.Azure.Management.ContainerInstance.Fluent: イメージ '/:v1' の OS バージョンはサポートされていません。
Linux ベースのコンテナー (コード) を使用して完全に動作します。
var credentials = new AzureCredentials(new ServicePrincipalLoginInformation
{
ClientId = "myid",
ClientSecret = "mysecret"
}, "mytenant", AzureEnvironment.AzureGlobalCloud);
var azure = Azure
.Configure()
.WithLogLevel(HttpLoggingDelegatingHandler.Level.Basic)
.Authenticate(credentials)
.WithDefaultSubscription();
var group = azure.ContainerGroups.Define("testFloodscreener")
.WithRegion(Region.USEast)
.WithNewResourceGroup("UFHAEAST")
.WithWindows()
.WithPrivateImageRegistry("<myazurecr>", "<crusername>", "<crpassword>")
.WithoutVolume()
.DefineContainerInstance("<name>")
.WithImage("<azurecr>/<imagename>:<tag>")
.WithoutPorts()
.WithCpuCoreCount(1)
.WithCpuCoreCount(1)
.WithMemorySizeInGB(1)
.Attach()
.WithRestartPolicy(ContainerGroupRestartPolicy.OnFailure)
.Create();
どんな助けでも大歓迎です-コンテナインスタンスを手動でスピンアップできます