Goodbye Azure Kubernetes, Hello Hetzner?
On to plan D!
After a few good months of experimentation since my last post, I’ve come to the conclusion that Azure is not the place to meet my goals.
Let\’s recap on the goals, and how well Azure and my deployment skills were able to meet each:
- Migrate OhanaAlpine workloads – Azure: 3, My skills: 5
I was able to get my static sites migrated – including fixing the build pipeline on one, SSL cert generation via LetsEncrypt, and MariaDB and WordPress running as single pod deployments. I learned so much doing this – which was one of the primary goals of doing it – but ultimately ran into some Azure limitations that were showstoppers. More on those below. - Single node and ability to scale – Azure: 5, My skills: 4
Single node was decent enough, and while I know Azure could scale out capably, but I never got the single-node deployment working well enough to want to take it to multi-node. There were some Azure performance limitations that stopped that. - Less than $50/mo, and lower is better – Azure 2, My skills: 3
When I bailed, my bill was running close to $70/mo for 1x Standard_B2s worker node, a load balancer, Azure Disk and Azure File storage, and very minimal egress charges. - No single point of failure / self-restoring pods – Azure: 4, My skills: 4
It\’s hard to get to this goal with a single node, so I worked to make the workloads self-healing in the event of a node rebuild. Using the Gitlab Agent for Kubernetes, a good tool and a carryover from the Linode days made deployments super-simple. If a node gets blown away, the agent will pull all the manifests from a gitlab rep and rebuild the workloads. Works like a charm. The only catch is that it doesn\’t put data back – that is, databases will be empty and WordPress will be stock out-of-the-box new. Using Azure Files as a read-write-many (RWX) filesystem was going to be a key to this, and it worked for manual reloads, but the performance wasn\’t there to pursue the automation further, nor was it nearly good enough to use as the backing file system for WordPress\’swp_content
directory. - Flexible for other deployments – Azure: n/a, My skills: n/a
I never got all of my core workloads going in a way that I was ready to call production capable so I never branched into other workloads.
As alluded to above, WordPress with Azure File as ANY part of the backing store is a no-go performance-wise. This was enough to put me off of Azure, as it’s near impossible to fix without seriously scaling up and spending $$$. With a Files share mapped in to wp-content
, I was getting 30sec page load times, and that’s with images failing to load. Mind you, that’s with Azure’s HDD “Transaction Optimized” storage. It’s a known problem with Azure File handling large numbers of small files.
Corroborating sites on Azure Files performance issues with large numbers of small files in WordPress:
- https://davemateer.com/2018/05/29/Wordpress-Persistence-AKS
- https://stackoverflow.com/questions/62612989/wordpress-on-azure-kubernetes-service-aks-very-slow
- https://github.com/Azure/AKS/issues/223
The path forward is either to go with un-scalable Azure Disk, scale up to way out of budget configurations, or move a platform other than Azure.
And with that, I cancelled my Azure subscription and deleted all my data there.
I put a question out to the collective wisdom of Reddit, and they came back with a few good options for providers that would meet my needs:
- Hetzner – super-affordable and highly regarded, but no managed Kubernetes.
- Digital Ocean – affordable with managed Kubernetes
- Civo
- Vulture
- Symbiosis.host
- Linode
Right now, I’m leaning strongly towards Hetzner, even if that means spinning up my own Kubernetes cluster. Their pricing is such that I can do 3 control nodes, 3 worker nodes, a load balancer, and a mix of storage for $48/mo or so.
Folks have pointed out that I could pay for static hosting and WordPress hosting for less cost and hassle than I’m going through with this, but I point out that the end product is only a small part of the goal. I’ve learned so much about Kubernetes and automation doing this so far, and I’m not done yet!