Skip to content

Brink-Software/Brink.AksKickStarters

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AksKickStarters

A pulumi project to spin up an azure kubernetes service with the following properties/services out of the box:

Pre-Requisites

Getting started

Ensure that the azure cli is logged in and that you have selected the subscription you want to use:

az login
az account set -s <your-subcription-id>

Ensure you are logged in to pulumi:

pulumi login

Clone the project and start deployment:

git clone https://github.com/Ibis-Software/AksKickStarters.git

cd AksKickStarters/infrastructure

npm install

pulumi stack init dev

pulumi up 

Confirm update, and after a while the deployment should be done and you should see an output simular to this publicIPAddress: "40.74.34.86". If you visit that address you should see the default nginx welcome page.

☝ ️ Tip: Working in a shared Azure subscription

    If you are working in a shared Azure subscription you can override the default resource group name to cater for individual resource group names. See section Configuration in this document.

    The resource group name is controlled with the akskickstart:name setting

After the deployment two resource groups (rg-akskickstart-dev, rg-akskickstart-dev-nodes) are created. Here is a schematic overview of the resources deployed:

architecture drawing

Optional steps

After adding the optional items you want you should run pulumi up to update your deployment.

Add SSL certificates from Keyvault

You can link you wildcard ssl certificates from keyvault by adding them to the pulumi configuration.

pulumi config set --path --path keyVaultResourceId /subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.KeyVault/vaults/<keyvault-name>

pulumi config set --path "sslCertificates[0].name" <ssl-certificate-name>

pulumi config set --path "sslCertificates[0].secret" https://<keyvault-name>.vault.azure.net/secrets/<certificate-name> --secret

You should then be able to create an ingress to use the certificate as follows:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: aspnetapp
  annotations:
    kubernetes.io/ingress.class: azure/application-gateway
    appgw.ingress.kubernetes.io/appgw-ssl-certificate: <ssl-certificate-name>
    appgw.ingress.kubernetes.io/ssl-redirect: "true"
spec:
  rules:
  ...

Link Azure Container Registry

You can specify an existing container registry to use in the deployment.

first, it is recommended to disable the deployment of the default container registry. See Configuration on how to do this.

To use an existing container run the following command:

pulumi config set --path acrResourceId /subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.ContainerRegistry/registries/<registry-name>

Add windows node pool

You can add a windows node pool by running the following command:

pulumi config set --path windows.enabled true

Configuration

Basic configuration is defined in the configuration file. Values can be overridden using pulumi config set --path [configuration-setting-name] [value]. E.g.: pulumi config set --path kskickstart:includeContainerRegistry "false".

Available settings:

Name Default Value Description
applicationGatewayTier Standard_v2 Tier to use for the Application Gateway. Accepted values: Standard_Small, Standard_Medium, Standard_Large, WAF_Medium, WAF_Large, Standard_v2, WAF_v2
defaultImage nginx The docker image to use for the demo pod
windows.enabled false It true, a windows node pool will be provisioned as well
includeContainerRegistry "true" Whether or not a container registry should be provisioned during the deployment. Set this to false to attach an existing registry.
kubernetesVersion 1.20.7 The kubernetes version to deploy
location WestEurope Azure region to deploy to
name akskickstart Name of the pulumi stack. Also used in the name of the Azure resource group
keyVaultResourceId <none> Id of an Azure Key Vault resource. E.g.: /subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.KeyVault/vaults/<keyvault-name>
sslCertificates[0].name <none> Name of the SSL certificate to use. See the SSL section
sslCertificates[0].secret <none> Reference to the Key Vault secrert, E.g.: https://<keyvault-name>.vault.azure.net/secrets/<certificate-name>. See the SSL section

Clean up

To remove the provisioned resource, run pulumi destroy --preserve-config. The --preserve-config flag prevents the configuration file from being removed as well in the process.

Issues

  • Runnning pulumi destroy will give you the following error error: 'azureassignedidentities.aadpodidentity.k8s.io' timed out waiting to be Ready. The only way to get arround this is to export the stack and remove the offending item and then import the stack again. See pulumi stack for more info.

About

Pulumi project to create an Azure Kubernetes Services resource with application gateway as the ingress controller

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published