1

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();

どんな助けでも大歓迎です-コンテナインスタンスを手動でスピンアップできます

4

1 に答える 1

0

Windows ベースのコンテナーを使用する Azure Container Instances - これによると、1709 ベースのイメージはサポートされていません。

https://docs.microsoft.com/en-us/azure/container-instances/container-instances-troubleshooting

ドー

于 2018-04-24T11:43:07.710 に答える