├── .github └── workflows │ └── publish.yml ├── .gitignore ├── AksApiTemplate.csproj ├── LICENSE.txt ├── README.md ├── pack-and-install.sh └── template ├── .template.config └── template.json ├── AksApi.csproj ├── Controllers └── v1 │ └── SampleController.cs ├── Dockerfile ├── HealthChecks ├── LiveHealthCheck.cs └── ReadyHealthCheck.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Startup.cs ├── appsettings.json └── chart ├── Chart.yaml ├── templates ├── deployment.yaml └── service.yaml └── values.yaml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/.gitignore -------------------------------------------------------------------------------- /AksApiTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/AksApiTemplate.csproj -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/README.md -------------------------------------------------------------------------------- /pack-and-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/pack-and-install.sh -------------------------------------------------------------------------------- /template/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/.template.config/template.json -------------------------------------------------------------------------------- /template/AksApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/AksApi.csproj -------------------------------------------------------------------------------- /template/Controllers/v1/SampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/Controllers/v1/SampleController.cs -------------------------------------------------------------------------------- /template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/Dockerfile -------------------------------------------------------------------------------- /template/HealthChecks/LiveHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/HealthChecks/LiveHealthCheck.cs -------------------------------------------------------------------------------- /template/HealthChecks/ReadyHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/HealthChecks/ReadyHealthCheck.cs -------------------------------------------------------------------------------- /template/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/Program.cs -------------------------------------------------------------------------------- /template/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/Properties/launchSettings.json -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/README.md -------------------------------------------------------------------------------- /template/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/Startup.cs -------------------------------------------------------------------------------- /template/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/appsettings.json -------------------------------------------------------------------------------- /template/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/chart/Chart.yaml -------------------------------------------------------------------------------- /template/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /template/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/chart/templates/service.yaml -------------------------------------------------------------------------------- /template/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbell/dotnet-aks-api-template/HEAD/template/chart/values.yaml --------------------------------------------------------------------------------