-
Azure Dev Ops CI / CD pipelines with AKS - Lessons learned
Solution ·I have this personal project where I have a swag of micro services collaborating to serve different web applications.
I started to work on the Continuous Integration / Continuous Deployment (CI / CD) using Azure DevOps.
I did toy around those areas before. But this was really a rubber hits the road experience...
-
About Ingress in Azure Kubernetes Service (AKS)
Solution ·I did a bit of experimentation with Kubernetes Ingress, more specifically NGINX, lately.
I found the concept of Ingress utterly confusing at first. It is actually relatively simple. So, I thought I would share this sense of simplicity.
This article is conceptual. There will be no code nor even Portal tour.
If you want to ramp up on Ingress in...
-
Handling recursivity in Logic Apps
Solution ·Azure Logic Apps is a powerful integration platform.
Some workflows naturally land themselves to recursion. For instance, handling a hierarchical data structure often has a natural recursive solution.
Azure Logic Apps doesn’t allow recursion directly. It forbids a Logic App invoking itself.
In this article we are going to explore two avenues...
-
Service Principal for Logic App Connector
Solution ·Azure Logic Apps is a powerful integration platform.
It integrates with different services (inside and outside Azure) using connectors.
Connectors are responsible to authenticate to the service they represent.
Some connectors will hold the credentials. This is the case, for instance, of the SQL connector.
Other connectors will by default take the...
-
AKS with Kubenet vs Azure Networking plug-in
Solution ·Update (22-03-2019): This configuration is now officially documented.
I’ve been diving into Kubernetes / AKS Networking lately. I thought I would share some of the insights I stumble upon.
We know AKS has two types of networking, basic & advanced, right?
- Basic provisions its own VNET and exposes only public IPs ...