storage
AKS: High Available Storage with Rook and Ceph
·1681 words·8 mins
azure
kubernetes
aks
rook
ceph
storage
Disclaimer: this is just a Proof of Concept.
If you deploy Azure Kubernetes Service clusters with availability zones, you’ll probaly need a high available storage solution.
In such situation you may use Azure Files as an external storage solution. But what if you need something that performs better? Or something running inside your cluster?
Static website hosting in an Azure Storage Account protected with Private Endpoint
·766 words·4 mins
azure
static website
storage account
private endpoint
storage
This post will show you how to deploy a Static Website on a Storage Account protected with Private Endpoint using Terraform:
Define the terraform providers to use # Create a providers.tf file with the following contents:
terraform { required_version = "> 0.12" required_providers { azurerm = { source = "azurerm" version = "~> 2.26" } } } provider "azurerm" { features {} skip_provider_registration = true } Define the variables # Create a variables.tf file with the following contents: