Deploy Containerized Web Applications

Uses the native Azure Provider running on .NET 5 and C# 9 to deploy containerized web applications.

Docker HubAzure App ServiceAzure Container RegistryAzure Kubernetes Service
using Pulumi;

await Deployment.RunAsync<MyStack>();

class MyStack : Stack
{
    public MyStack()
    {
        var cluster = new AksCluster("aks");

        var app = new WebApplication("hello", new()
        {
            Cluster = cluster,
            AppFolder = "./app"
        });

        this.Endpoint = app.Endpoint;
    }
    
    [Output] public Output<string> Endpoint { get; set; }
}

Download

git clone https://github.com/pulumi/examples
cd examples/azure-cs-net5-aks-webapp

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page